diff options
Diffstat (limited to 'src/shared/cplusplus/Semantic.h')
-rw-r--r-- | src/shared/cplusplus/Semantic.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/shared/cplusplus/Semantic.h b/src/shared/cplusplus/Semantic.h index 391872d847..4a2ebfc2fb 100644 --- a/src/shared/cplusplus/Semantic.h +++ b/src/shared/cplusplus/Semantic.h @@ -61,9 +61,10 @@ class CPLUSPLUS_EXPORT Semantic void operator =(const Semantic &other); public: - Semantic(Control *control); + Semantic(TranslationUnit *translationUnit); virtual ~Semantic(); + TranslationUnit *translationUnit() const; Control *control() const; FullySpecifiedType check(SpecifierListAST *specifier, Scope *scope); |