Skip to content

Commit

Permalink
[PodTargetInstaller] Fixed static analysis in Xcode 6
Browse files Browse the repository at this point in the history
Closes #2402

Conflicts:
	CHANGELOG.md
  • Loading branch information
segiddins committed Sep 11, 2014
1 parent 3fe8b50 commit 5bc3fc0
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,10 @@ To install or update CocoaPods see this [guide](http://docs.cocoapods.org/guides
[Robert Zuber](https://github.com/z00b)
[#1904](https://github.com/CocoaPods/CocoaPods/issues/1904)

* Fixed static analysis in Xcode 6
[Samuel Giddins](segiddins)
[#2402](https://github.com/CocoaPods/CocoaPods/issues/2402)

* Fixes an issue where version of a spec will not be locked when using multiple
subspecs of a podspec.
[Kyle Fuller](https://github.com/kylef)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ def compiler_flags_for_consumer(consumer)
end
end
if target_definition.inhibits_warnings_for_pod?(consumer.spec.root.name)
flags << '-w -Xanalyzer -analyzer-disable-checker'
flags << '-w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode'
end
flags * ' '
end
Expand Down

0 comments on commit 5bc3fc0

Please sign in to comment.