Skip to content

Commit 62c4492

Browse files
committed
Support .ixx as an inline file extension.
1 parent 5f017a0 commit 62c4492

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules/ProjectCreator.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ my $cppresource = 'resource_files';
194194
my %cppvc = ('source_files' => [ "\\.cpp", "\\.cxx", "\\.cc", "\\.c", "\\.C", ],
195195
'template_files' => [ "_T\\.cpp", "_T\\.cxx", "_T\\.cc", "_T\\.c", "_T\\.C", "_t\\.cpp", "_t\\.cxx", "_t\\.cc", "_t\\.c", "_t\\.C", "\\.tpp" ],
196196
'header_files' => [ "\\.h", "\\.hpp", "\\.hxx", "\\.hh", ],
197-
'inline_files' => [ "\\.i", "\\.ipp", "\\.inl", ],
197+
'inline_files' => [ "\\.i", "\\.ipp", "\\.ixx", "\\.inl", ],
198198
'documentation_files' => [ "README", "readme", "\\.doc", "\\.txt", "\\.html" ],
199199
$cppresource => [ "\\.rc", ],
200200
);

0 commit comments

Comments
 (0)