diff options
Diffstat (limited to 'clang/test/SemaCXX/attr-format.cpp')
| -rw-r--r-- | clang/test/SemaCXX/attr-format.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/clang/test/SemaCXX/attr-format.cpp b/clang/test/SemaCXX/attr-format.cpp index d1659c98dee..369099a8480 100644 --- a/clang/test/SemaCXX/attr-format.cpp +++ b/clang/test/SemaCXX/attr-format.cpp @@ -1,8 +1,8 @@ // RUN: clang-cc -fsyntax-only -verify %s struct S { - static void f(const char*, ...) __attribute__((format(printf, 1, 2))); - - // GCC has a hidden 'this' argument in member functions which is why - // the format argument is argument 2 here. - void g(const char*, ...) __attribute__((format(printf, 2, 3))); -};
\ No newline at end of file + static void f(const char*, ...) __attribute__((format(printf, 1, 2))); + + // GCC has a hidden 'this' argument in member functions which is why + // the format argument is argument 2 here. + void g(const char*, ...) __attribute__((format(printf, 2, 3))); +}; |

