aboutsummaryrefslogtreecommitdiff
path: root/include/clang/Frontend/FrontendAction.h
diff options
context:
space:
mode:
authorDouglas Gregor <dgregor@apple.com>2010-02-08 21:09:39 +0000
committerDouglas Gregor <dgregor@apple.com>2010-02-08 21:09:39 +0000
commit089459a16bf7e9cd10617d1fac5ec0240a0a1ee6 (patch)
tree96f4eb5ee5cb75969151487b4c143b7873de8951 /include/clang/Frontend/FrontendAction.h
parent7aaa9535815a9423e2574a524022c8118cc1aa3b (diff)
Implement basic importing and merging of variable declarations within
the AST importer. This doesn't actually do anything (yet), because we don't have driver logic for merging ASTs. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@95570 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Frontend/FrontendAction.h')
-rw-r--r--include/clang/Frontend/FrontendAction.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/clang/Frontend/FrontendAction.h b/include/clang/Frontend/FrontendAction.h
index 3042767af8..29a9302c5c 100644
--- a/include/clang/Frontend/FrontendAction.h
+++ b/include/clang/Frontend/FrontendAction.h
@@ -167,7 +167,7 @@ public:
};
/// ASTFrontendAction - Abstract base class to use for AST consumer based
-/// frontend actios.
+/// frontend actions.
class ASTFrontendAction : public FrontendAction {
/// ExecuteAction - Implement the ExecuteAction interface by running Sema on
/// the already initialized AST consumer.