From f5477ba70eb1a03cc8125cb6f53235d9cfc53c7d Mon Sep 17 00:00:00 2001 From: Jason Vasquez Date: Fri, 23 Oct 2015 10:22:17 -0400 Subject: [PATCH] Adding .hxx to the list of recognized header file extensions --- CHANGELOG.md | 3 +++ lib/xcodeproj/constants.rb | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 11dabc143..3161676bb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,9 @@ [Boris Bügling](https://github.com/neonichu) [Xcodeproj#318](https://github.com/CocoaPods/Xcodeproj/pull/318) +* Added .hxx to the list of recognized header file extensions. + [Jason Vasquez](https://github.com/jasonvasquez) + [Xcodeproj#320](https://github.com/CocoaPods/Xcodeproj/pull/320) ## 0.28.2 (2015-10-09) diff --git a/lib/xcodeproj/constants.rb b/lib/xcodeproj/constants.rb index 22ec2d0f3..81895153a 100644 --- a/lib/xcodeproj/constants.rb +++ b/lib/xcodeproj/constants.rb @@ -314,6 +314,6 @@ module Constants # @return [Array] The extensions which are associated with header files. # - HEADER_FILES_EXTENSIONS = %w(.h .hh .hpp .ipp .tpp).freeze + HEADER_FILES_EXTENSIONS = %w(.h .hh .hpp .ipp .tpp .hxx).freeze end end