[clang-tools-extra] [clang-tidy] Fix false positive in bugprone-use-after-move for std::tie (PR #192895)
Daniil Dudkin via cfe-commits
cfe-commits at lists.llvm.org
Tue May 5 11:46:38 PDT 2026
================
@@ -15,12 +15,13 @@
#include <forward_list>
#include <list>
#include <map>
+#include <memory>
#include <set>
#include <string>
+#include <tuple>
----------------
unterumarmung wrote:
Should we include `std::tie` from the standard library or define ourselves in the `namespace std`? Or is it "mock" standard library that is being included here?
https://github.com/llvm/llvm-project/pull/192895
More information about the cfe-commits
mailing list