[clang-tools-extra] [clang-doc] fix flaky test in clang-doc (PR #101387)
via cfe-commits
cfe-commits at lists.llvm.org
Thu Aug 1 13:14:15 PDT 2024
================
@@ -270,10 +273,12 @@ struct Info {
virtual ~Info() = default;
+ Info &operator=(Info &&Other) = default;
+
SymbolID USR =
SymbolID(); // Unique identifier for the decl described by this Info.
- const InfoType IT = InfoType::IT_default; // InfoType of this particular Info.
----------------
PeterChou1 wrote:
The const implicitly deleted the move assignment operator which I need to sort Info vectors so I had to remove it
https://github.com/llvm/llvm-project/pull/101387
More information about the cfe-commits
mailing list