Skip to content
Snippets Groups Projects
Commit ed662708 authored by Jan Trávníček's avatar Jan Trávníček
Browse files

common: don't report false positive

parent 8ee37947
No related branches found
No related tags found
1 merge request!200clang tidy fixes
......@@ -70,6 +70,7 @@ public:
*/
template < class Type >
requires ( ! std::is_same_v < std::decay_t < Type >, Object > )
// NOLINTNEXTLINE ( bugprone-forwarding-reference-overload )
explicit Object ( Type && data ) : Object ( object::AnyObject < typename std::decay < Type >::type > ( std::forward < Type > ( data ) ) ) {
}
 
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment