Skip to content
Snippets Groups Projects
Commit 1c8b99ce authored by Brad King's avatar Brad King Committed by Kitware Robot
Browse files

Merge topic 'fix-right-angle-bracket-feature-test'

68e7250a Features: Fix cxx_right_angle_brackets compiler feature test
parents 9d203c00 68e7250a
No related branches found
No related tags found
No related merge requests found
......@@ -7,6 +7,8 @@ struct A
void someFunc()
{
A<A<int> > object;
/* clang-format off */
A<A<int>> object;
/* clang-format on */
(void)object;
}
......@@ -130,6 +130,7 @@ $git_ls -z -- '*.c' '*.cc' '*.cpp' '*.cxx' '*.h' '*.hh' '*.hpp' '*.hxx' |
# Exclude manually-formatted sources (e.g. with long lines).
egrep -z -v '^Tests/PositionIndependentTargets/pic_test.h' |
egrep -z -v '^Tests/CompileFeatures/cxx_right_angle_brackets.cpp' |
# Exclude sources with encoding not suported by clang-format.
egrep -z -v '^Tests/RunCMake/CommandLine/cmake_depends/test_UTF-16LE.h' |
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment