From b22d589e2ccd09cada0bcea136f0966883a8bb11 Mon Sep 17 00:00:00 2001 From: Ted Kremenek Date: Thu, 3 Apr 2008 19:52:45 +0000 Subject: [PATCH] Make typedefs public. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@49185 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/clang/Analysis/PathSensitive/GRExprEngine.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/include/clang/Analysis/PathSensitive/GRExprEngine.h b/include/clang/Analysis/PathSensitive/GRExprEngine.h index 336a140f4b..e88b377a97 100644 --- a/include/clang/Analysis/PathSensitive/GRExprEngine.h +++ b/include/clang/Analysis/PathSensitive/GRExprEngine.h @@ -80,7 +80,7 @@ protected: SimpleChecksTy CallChecks; SimpleChecksTy MsgExprChecks; - +public: typedef llvm::SmallPtrSet UndefBranchesTy; typedef llvm::SmallPtrSet UndefStoresTy; typedef llvm::SmallPtrSet BadDerefTy; @@ -91,6 +91,8 @@ protected: typedef llvm::SmallPtrSet NoReturnCallsTy; typedef llvm::SmallPtrSet UndefResultsTy; typedef llvm::SmallPtrSet RetsStackAddrTy; + +protected: /// RetsStackAddr - Nodes in the ExplodedGraph that result from returning /// the address of a stack variable. -- 2.40.0