diff --git a/alib2common/src/object/Object.h b/alib2common/src/object/Object.h
index 01daa2592c46d038a9372a0301f98fe21a8e830c..6605132989153b31be7b87fcccbddeaee053a89c 100644
--- a/alib2common/src/object/Object.h
+++ b/alib2common/src/object/Object.h
@@ -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 ) ) ) {
 	}