diff options
author | Ted Kremenek <kremenek@apple.com> | 2012-08-22 23:50:41 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2012-08-22 23:50:41 +0000 |
commit | 78094caa561ca4a9dc7b4e75beac16b3ef64eb16 (patch) | |
tree | 57418af12edde82285c5bacde814b3b2c5b518e6 /clang/lib/StaticAnalyzer/Core/RegionStore.cpp | |
parent | feb5a2384bffc91bef25ccae2beff12b993c345f (diff) | |
download | bcm5719-llvm-78094caa561ca4a9dc7b4e75beac16b3ef64eb16.tar.gz bcm5719-llvm-78094caa561ca4a9dc7b4e75beac16b3ef64eb16.zip |
Fix an assortment of doxygen comment issues found by -Wdocumentation.
llvm-svn: 162412
Diffstat (limited to 'clang/lib/StaticAnalyzer/Core/RegionStore.cpp')
-rw-r--r-- | clang/lib/StaticAnalyzer/Core/RegionStore.cpp | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/clang/lib/StaticAnalyzer/Core/RegionStore.cpp b/clang/lib/StaticAnalyzer/Core/RegionStore.cpp index 8af92ed8825..b3cf2080006 100644 --- a/clang/lib/StaticAnalyzer/Core/RegionStore.cpp +++ b/clang/lib/StaticAnalyzer/Core/RegionStore.cpp @@ -293,11 +293,9 @@ public: // Part of public interface to class. StoreRef BindAggregate(Store store, const TypedRegion *R, SVal DefaultVal); /// \brief Create a new store with the specified binding removed. - /// - /// \brief \param ST the original store, that is the basis for the new store. - /// - /// \brief \param L the location whose binding should be removed. - StoreRef killBinding(Store ST, Loc LV); + /// \param ST the original store, that is the basis for the new store. + /// \param L the location whose binding should be removed. + StoreRef killBinding(Store ST, Loc L); void incrementReferenceCount(Store store) { GetRegionBindings(store).manualRetain(); |