Index: src/SynTree/Type.h
===================================================================
--- src/SynTree/Type.h	(revision 8f0627739771873f0409e88a71dcaaf6d43b7204)
+++ src/SynTree/Type.h	(revision 44a0ca20cb055d3e45fe4b15fca7d515df7d1c17)
@@ -10,6 +10,6 @@
 // Created On       : Mon May 18 07:44:20 2015
 // Last Modified By : Peter A. Buhr
-// Last Modified On : Mon Feb 13 17:13:52 2023
-// Update Count     : 173
+// Last Modified On : Sun Feb 19 22:37:10 2023
+// Update Count     : 176
 //
 
@@ -125,8 +125,8 @@
 		bool operator!=( Qualifiers other ) const { return (val & Mask) != (other.val & Mask); }
 		bool operator<=( Qualifiers other ) const {
-			return is_const    <= other.is_const        //Any non-const converts to const without cost
-					&& is_volatile <= other.is_volatile     //Any non-volatile converts to volatile without cost
-					&& is_mutex    >= other.is_mutex        //Any mutex converts to non-mutex without cost
-					&& is_atomic   == other.is_atomic;      //No conversion from atomic to non atomic is free
+			return is_const    <= other.is_const        // Any non-const converts to const without cost
+				&& is_volatile <= other.is_volatile		// Any non-volatile converts to volatile without cost
+				&& is_mutex    >= other.is_mutex		// Any mutex converts to non-mutex without cost
+				&& is_atomic   == other.is_atomic;		// No conversion from atomic to non atomic is free
 		}
 		bool operator<( Qualifiers other ) const { return *this != other && *this <= other; }
@@ -632,6 +632,6 @@
 class TypeofType : public Type {
   public:
-	Expression * expr;    ///< expression to take the type of
-	bool is_basetypeof;  ///< true iff is basetypeof type
+	Expression * expr;		///< expression to take the type of
+	bool is_basetypeof;		///< true iff is basetypeof type
 
 	TypeofType( const Type::Qualifiers & tq, Expression * expr, const std::list< Attribute * > & attributes = std::list< Attribute * >() );
