diff options
-rw-r--r-- | include/clang/Parse/DeclSpec.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/clang/Parse/DeclSpec.h b/include/clang/Parse/DeclSpec.h index c202b075bf..9907a6964f 100644 --- a/include/clang/Parse/DeclSpec.h +++ b/include/clang/Parse/DeclSpec.h @@ -281,7 +281,8 @@ public: bool SetTypeSpecType(TST T, SourceLocation Loc, const char *&PrevSpec, void *Rep = 0, bool Owned = false); bool SetTypeSpecError(); - + void UpdateTypeRep(void *Rep) { TypeRep = Rep; } + bool SetTypeQual(TQ T, SourceLocation Loc, const char *&PrevSpec, const LangOptions &Lang); |