Index: src/SynTree/Type.h
===================================================================
--- src/SynTree/Type.h	(revision 1fbab5a0107bc631a52826378ed50c1187d6284c)
+++ src/SynTree/Type.h	(revision b32ada3178d846d1ee56e8cdd6c3755f2d532471)
@@ -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 {
