summaryrefslogtreecommitdiffstats
path: root/test/input
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2016-11-10 19:04:56 (GMT)
committerBrad King <brad.king@kitware.com>2016-11-10 19:51:04 (GMT)
commitbd226ccbaf3b9fed9ee31c42cf8a68852287c115 (patch)
treea83cb805e6f5c65415353fb0861cea6016595dec /test/input
parent85211a28e9bdf73a92c9a88e861ae9d055e199f6 (diff)
downloadCastXML-bd226ccbaf3b9fed9ee31c42cf8a68852287c115.zip
CastXML-bd226ccbaf3b9fed9ee31c42cf8a68852287c115.tar.gz
CastXML-bd226ccbaf3b9fed9ee31c42cf8a68852287c115.tar.bz2
Protect hand-formatted blocks from clang-format
Diffstat (limited to 'test/input')
-rw-r--r--test/input/Class-template-recurse.cxx2
1 files changed, 2 insertions, 0 deletions
diff --git a/test/input/Class-template-recurse.cxx b/test/input/Class-template-recurse.cxx
index fd702a8..37c73e0 100644
--- a/test/input/Class-template-recurse.cxx
+++ b/test/input/Class-template-recurse.cxx
@@ -5,7 +5,9 @@ template <typename T> struct B {
};
template <typename T> struct C {
C() {
+ /* clang-format off */
static_cast<void>(sizeof(typename B< A<T> >::type));
+ /* clang-format on */
}
};
C<void> start;