Browse Source

clang-tidy: false positive

skypjack 1 month ago
parent
commit
f4d20f24f9
1 changed files with 1 additions and 0 deletions
  1. 1 0
      src/entt/meta/meta.hpp

+ 1 - 0
src/entt/meta/meta.hpp

@@ -377,6 +377,7 @@ public:
      * @param value An instance of an object to use to initialize the wrapper.
      * @return This meta any object.
      */
+    // NOLINTNEXTLINE(cppcoreguidelines-c-copy-assignment-signature,misc-unconventional-assign-operator)
     meta_any &operator=(auto &&value)
     requires (!stl::same_as<stl::remove_cvref_t<decltype(value)>, meta_any>) {
         emplace<stl::remove_cvref_t<decltype(value)>>(stl::forward<decltype(value)>(value));