diff options
author | Anders Carlsson <andersca@mac.com> | 2009-03-15 18:44:04 +0000 |
---|---|---|
committer | Anders Carlsson <andersca@mac.com> | 2009-03-15 18:44:04 +0000 |
commit | 27de6a5e9148f3090fdf4e70c50a9238e60d11d0 (patch) | |
tree | 77cdf803e70c574331d6296fe9549ceaecc08f3e /clang/Driver/PrintParserCallbacks.cpp | |
parent | a39058118b6168425b5760895c53bcce2ef5a9ad (diff) | |
download | bcm5719-llvm-27de6a5e9148f3090fdf4e70c50a9238e60d11d0.tar.gz bcm5719-llvm-27de6a5e9148f3090fdf4e70c50a9238e60d11d0.zip |
Handle static_asserts when instantiating structs.
llvm-svn: 67031
Diffstat (limited to 'clang/Driver/PrintParserCallbacks.cpp')
-rw-r--r-- | clang/Driver/PrintParserCallbacks.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/clang/Driver/PrintParserCallbacks.cpp b/clang/Driver/PrintParserCallbacks.cpp index f9399e2e1e4..b123505bf8d 100644 --- a/clang/Driver/PrintParserCallbacks.cpp +++ b/clang/Driver/PrintParserCallbacks.cpp @@ -724,8 +724,7 @@ namespace { virtual DeclTy *ActOnStaticAssertDeclaration(SourceLocation AssertLoc, ExprArg AssertExpr, - ExprArg AssertMessageExpr, - SourceLocation RParenLoc) { + ExprArg AssertMessageExpr) { llvm::cout << __FUNCTION__ << "\n"; return 0; } |