KWIML: Avoid conflict with C++11 user-defined literals

Clang warns

 test/test_INT_format.h:28:26: warning: identifier after literal will
 be treated as a reserved user-defined literal suffix in C++11
 [-Wc++11-compat-reserved-user-defined-literal]
  " expression [%"KWIML_INT_PRI##PRI"],"

because the KWIML_... part is an identifier lexically immediately
following a string literal.  Add a space between the string literal
and the identifier to avoid the C++11 user-defined literal syntax.
This commit is contained in:
Brad King 2012-03-20 15:42:18 -04:00
parent f94ae0ecda
commit 10272e6403
1 changed files with 6 additions and 6 deletions