From bd78161d95c91859b362c682552ab78c965b2420 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Mon, 14 Aug 2006 00:57:06 +0000 Subject: [PATCH] Add DeclTy typedef. llvm-svn: 38916 --- clang/include/clang/Parse/Action.h | 1 + 1 file changed, 1 insertion(+) diff --git a/clang/include/clang/Parse/Action.h b/clang/include/clang/Parse/Action.h index f63b2b2de53a..aef7a6187975 100644 --- a/clang/include/clang/Parse/Action.h +++ b/clang/include/clang/Parse/Action.h @@ -43,6 +43,7 @@ public: // Types - Though these don't actually enforce strong typing, they document // what types are required to be identical for the actions. typedef void ExprTy; + typedef void DeclTy; //===--------------------------------------------------------------------===// // Symbol table tracking callbacks.