diff options
author | James Dennett <jdennett@google.com> | 2012-06-17 03:52:50 +0000 |
---|---|---|
committer | James Dennett <jdennett@google.com> | 2012-06-17 03:52:50 +0000 |
commit | 7c0d2a366d2810e711f9c6ced8cbd923b9fc823a (patch) | |
tree | 1f67e8d92482ba41bd519eb9074dd83723170654 | |
parent | 75996d2bf191bd5d1e981b93b99f5b77add1266e (diff) |
Documentation cleanup: Add missing parameter name to a \param command
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@158621 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/clang/StaticAnalyzer/Core/CheckerManager.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/clang/StaticAnalyzer/Core/CheckerManager.h b/include/clang/StaticAnalyzer/Core/CheckerManager.h index 252d36d69b..b9d6a32918 100644 --- a/include/clang/StaticAnalyzer/Core/CheckerManager.h +++ b/include/clang/StaticAnalyzer/Core/CheckerManager.h @@ -287,9 +287,9 @@ public: /// For example, in the case of a function call, these would be arguments. /// \param Regions The transitive closure of accessible regions, /// i.e. all regions that may have been touched by this change. - /// \param The call expression wrapper if the regions are invalidated by a - /// call. - ProgramStateRef + /// \param Call The call expression wrapper if the regions are invalidated + /// by a call. + ProgramStateRef runCheckersForRegionChanges(ProgramStateRef state, const StoreManager::InvalidatedSymbols *invalidated, ArrayRef<const MemRegion *> ExplicitRegions, |