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
  • Merge requests
  • !179

Fixed #imports to properly support Xcode 7.1

  • Review changes

  • Download
  • Email patches
  • Plain diff
Closed Administrator requested to merge github/fork/Widgetlabs/master into master Oct 26, 2015
  • Overview 5
  • Commits 1
  • Pipelines 0
  • Changes 12

Created by: fluidsonic

A framework's header files can no longer import other own header files using angular import syntax (#import <Bolts/…>) as of Xcode 7.1. That leads to a lot errors when importing (not compiling) this framework.

Example:

Pods/Bolts/Bolts/Common/BFCancellationToken.h:13:9: error: include of non-modular header inside framework module 'Bolts.BFCancellationToken' [-Werror,-Wnon-modular-include-in-framework-module]
#import <Bolts/BFCancellationTokenRegistration.h>

Properly using #import "XYZ.h" instead of #import <Bolts/XYZ.h> fixes this issue.

Assignee
Assign to
Reviewers
Request review from
Time tracking
Source branch: github/fork/Widgetlabs/master