Tests: Protect unicode literals from clang-format Cpp03 formatting

Since CMake is written in C++98 any clang-format configuration must
set `Standard` to `Cpp03` so that `A<A<int> >` is not rewritten as
`A<A<int>>`.  However, this will cause `U"foo"` to be rewritten as
`U "foo"`.  Add markup to turn clang-format off in the one place
that the latter case occurs so that we do not need a separate
`.clang-format` config file for it.

Inspired-by: Daniel Pfeifer <daniel@pfeifer-mail.de>
This commit is contained in:
Brad King 2016-05-11 10:36:51 -04:00
parent eb4f510412
commit 18df6a9a78
1 changed files with 2 additions and 0 deletions

View File

@ -1,3 +1,5 @@
/* clang-format off */
const char16_t lit_16[] = u"\u00DA";
const char32_t lit_32[] = U"\u00DA";
/* clang-format on */