diff options
author | Anna Zaks <ganna@apple.com> | 2011-11-16 19:58:02 +0000 |
---|---|---|
committer | Anna Zaks <ganna@apple.com> | 2011-11-16 19:58:02 +0000 |
commit | fc06f988da35df75e623e0c1c4e4db4d36c0b43b (patch) | |
tree | 73aba1c1f802997a311dbf44c6f44195333dd9c6 | |
parent | c24b4f6ae3507aa501c2dafdff62c1059f8922ad (diff) |
[analyzer] Cleanup (NULL -> 0, no doxygen in cpp).
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@144822 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/clang/StaticAnalyzer/Core/PathSensitive/SVals.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/clang/StaticAnalyzer/Core/PathSensitive/SVals.h b/include/clang/StaticAnalyzer/Core/PathSensitive/SVals.h index 5827b0042a..6c9c9576ba 100644 --- a/include/clang/StaticAnalyzer/Core/PathSensitive/SVals.h +++ b/include/clang/StaticAnalyzer/Core/PathSensitive/SVals.h @@ -121,15 +121,15 @@ public: /// Otherwise return 0. const FunctionDecl *getAsFunctionDecl() const; - /// getAsLocSymbol - If this SVal is a location (subclasses Loc) and - /// wraps a symbol, return that SymbolRef. Otherwise return NULL. + /// If this SVal is a location (subclasses Loc) and + /// wraps a symbol, return that SymbolRef. Otherwise return 0. SymbolRef getAsLocSymbol() const; /// Get the symbol in the SVal or its base region. SymbolRef getLocSymbolInBase() const; - /// getAsSymbol - If this Sval wraps a symbol return that SymbolRef. - /// Otherwise return a SymbolRef where 'isValid()' returns false. + /// If this SVal wraps a symbol return that SymbolRef. + /// Otherwise, return 0. SymbolRef getAsSymbol() const; /// getAsSymbolicExpression - If this Sval wraps a symbolic expression then |