diff options
Diffstat (limited to 'include/clang/Parse/Action.h')
-rw-r--r-- | include/clang/Parse/Action.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/clang/Parse/Action.h b/include/clang/Parse/Action.h index 8b4a0c1bfd..0e5ae2a79b 100644 --- a/include/clang/Parse/Action.h +++ b/include/clang/Parse/Action.h @@ -154,6 +154,12 @@ public: virtual DeclTy *ParsedFreeStandingDeclSpec(Scope *S, DeclSpec &DS) { return 0; } + + virtual DeclTy *ActOnLinkageSpec(SourceLocation Loc, SourceLocation LBrace, + SourceLocation RBrace, const char *Lang, + unsigned StrSize, DeclTy *D) { + return 0; + } //===--------------------------------------------------------------------===// // Type Parsing Callbacks. |