[PATCH] D115931: [analyzer] Enable move semantics for CallDescriptionMap
Endre Fülöp via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Mon Dec 20 02:18:51 PST 2021
gamesh411 updated this revision to Diff 395395.
gamesh411 added a comment.
Remove static asserts as it adds little to no value in this case
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D115931/new/
https://reviews.llvm.org/D115931
Files:
clang/include/clang/StaticAnalyzer/Core/PathSensitive/CallDescription.h
Index: clang/include/clang/StaticAnalyzer/Core/PathSensitive/CallDescription.h
===================================================================
--- clang/include/clang/StaticAnalyzer/Core/PathSensitive/CallDescription.h
+++ clang/include/clang/StaticAnalyzer/Core/PathSensitive/CallDescription.h
@@ -141,6 +141,9 @@
CallDescriptionMap(const CallDescriptionMap &) = delete;
CallDescriptionMap &operator=(const CallDescription &) = delete;
+ CallDescriptionMap(CallDescriptionMap &&) = default;
+ CallDescriptionMap &operator=(CallDescriptionMap &&) = default;
+
LLVM_NODISCARD const T *lookup(const CallEvent &Call) const {
// Slow path: linear lookup.
// TODO: Implement some sort of fast path.
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D115931.395395.patch
Type: text/x-patch
Size: 721 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20211220/fc867cff/attachment.bin>
More information about the cfe-commits
mailing list