Skip to content
GitLab
Projects Groups Snippets
  • /
  • Help
    • Help
    • Support
    • Community forum
    • Submit feedback
    • Contribute to GitLab
  • Sign in / Register
  • B Bolts-ObjC
  • Project information
    • Project information
    • Activity
    • Labels
    • Members
  • Repository
    • Repository
    • Files
    • Commits
    • Branches
    • Tags
    • Contributors
    • Graph
    • Compare
  • Issues 34
    • Issues 34
    • List
    • Boards
    • Service Desk
    • Milestones
  • Merge requests 7
    • Merge requests 7
  • CI/CD
    • CI/CD
    • Pipelines
    • Jobs
    • Schedules
  • Deployments
    • Deployments
    • Environments
    • Releases
  • Packages and registries
    • Packages and registries
    • Package Registry
    • Infrastructure Registry
  • Monitor
    • Monitor
    • Incidents
  • Analytics
    • Analytics
    • Value stream
    • CI/CD
    • Repository
  • Wiki
    • Wiki
  • Snippets
    • Snippets
  • Activity
  • Graph
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
Collapse sidebar
  • BoltsFramework
  • Bolts-ObjC
  • Repository
Switch branch/tag
  • Bolts-ObjC
  • Bolts.xcodeproj
  • project.xcworkspace
  • xcshareddata
  • Bolts.xccheckout
Find file BlameHistoryPermalink
  • Michael Bolin's avatar
    Change from `#import "foo"` to `#import <Bolts/foo>`. · e720e904
    Michael Bolin authored Oct 08, 2014
    The goal of this change is to make it possible for Bolts to
    play nicer with header maps:
    http://clang.llvm.org/doxygen/HeaderMap_8h_source.html
    
    I created this diff by running the following:
    
        find . -name \*.h | xargs sed -i '' -e 's!^#import "\(BF\)\(.*\)"$!#import <Bolts/\1\2>!g'
    e720e904