Index: src/SynTree/Type.h
===================================================================
--- src/SynTree/Type.h	(revision 1fbab5a0107bc631a52826378ed50c1187d6284c)
+++ src/SynTree/Type.h	(revision 17af7d185d75583696ef5e090868e66c99131d40)
@@ -92,9 +92,9 @@
 		bool operator<=( Qualifiers other ) const {
 			return isConst <= other.isConst && isVolatile <= other.isVolatile &&
-				isMutex == other.isMutex && isAtomic == other.isAtomic;
+				isMutex >= other.isMutex && isAtomic == other.isAtomic;
 		}
 	 	bool operator>=( Qualifiers other ) const {
 			return isConst >= other.isConst	&& isVolatile >= other.isVolatile &&
-				isMutex == other.isMutex && isAtomic == other.isAtomic;
+				isMutex <= other.isMutex && isAtomic == other.isAtomic;
 		}
 		bool operator<( Qualifiers other ) const {
