diff options
Diffstat (limited to 'include/clang/Driver/Action.h')
-rw-r--r-- | include/clang/Driver/Action.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/clang/Driver/Action.h b/include/clang/Driver/Action.h index b9bf671..ceef189 100644 --- a/include/clang/Driver/Action.h +++ b/include/clang/Driver/Action.h @@ -75,6 +75,8 @@ protected: public: virtual ~Action(); + const char *getClassName() const { return Action::getClassName(getKind()); } + ActionClass getKind() const { return Kind; } types::ID getType() const { return Type; } |