Index: src/Common/SemanticError.hpp
===================================================================
--- src/Common/SemanticError.hpp	(revision eae8b37d7379001bb81375459612907897447955)
+++ src/Common/SemanticError.hpp	(revision 6503ef4f201545a960c07a4385e562f244961952)
@@ -10,6 +10,6 @@
 // Created On       : Mon May 18 07:44:20 2015
 // Last Modified By : Peter A. Buhr
-// Last Modified On : Thu Dec 14 13:48:07 2023
-// Update Count     : 72
+// Last Modified On : Mon Dec  2 15:14:13 2024
+// Update Count     : 75
 //
 
@@ -60,5 +60,4 @@
 	{"self-assign"              , Severity::Warn, "self assignment of expression: %s"                          },
 	{"reference-conversion"     , Severity::Warn, "rvalue to reference conversion of rvalue: %s"               },
-	{"qualifiers-zero_t-one_t"  , Severity::Warn, "questionable use of type qualifier(s) with %s"              },
 	{"aggregate-forward-decl"   , Severity::Warn, "forward declaration of nested aggregate: %s"                },
 	{"superfluous-decl"         , Severity::Warn, "declaration does not allocate storage: %s"                  },
@@ -72,5 +71,4 @@
 	SelfAssignment,
 	RvalueToReferenceConversion,
-	BadQualifiersZeroOne,
 	AggrForwardDecl,
 	SuperfluousDecl,
Index: src/Parser/DeclarationNode.cpp
===================================================================
--- src/Parser/DeclarationNode.cpp	(revision eae8b37d7379001bb81375459612907897447955)
+++ src/Parser/DeclarationNode.cpp	(revision 6503ef4f201545a960c07a4385e562f244961952)
@@ -10,6 +10,6 @@
 // Created On       : Sat May 16 12:34:05 2015
 // Last Modified By : Peter A. Buhr
-// Last Modified On : Thu Aug 22 14:11:47 2024
-// Update Count     : 1555
+// Last Modified On : Mon Dec  2 15:04:12 2024
+// Update Count     : 1558
 //
 
@@ -455,8 +455,4 @@
 
 	checkQualifiers( type, q->type );
-	TypeData::BuiltinType const builtin = type->builtintype;
-	if ( (builtin == TypeData::Zero || builtin == TypeData::One) && q->type->qualifiers.any() && error.length() == 0 ) {
-		SemanticWarning( yylloc, Warning::BadQualifiersZeroOne, TypeData::builtinTypeNames[builtin] );
-	} // if
 	type = ::addQualifiers( type, q->type );
 	q->type = nullptr;
