mirror of
				https://github.com/Ed94/gencpp.git
				synced 2025-10-31 06:50:53 -07:00 
			
		
		
		
	minor updates for better unused code cleanup in the c_library
This commit is contained in:
		| @@ -72,16 +72,16 @@ inline Str spec_to_str( Specifier type ) | ||||
|  | ||||
| inline bool spec_is_trailing( Specifier specifier ) | ||||
| { | ||||
| 	switch (specifier) { | ||||
| 		case Spec_Const: | ||||
| 		case Spec_Final: | ||||
| 		case Spec_NoExceptions: | ||||
| 		case Spec_Override: | ||||
| 		case Spec_Pure: | ||||
| 		case Spec_Volatile: | ||||
| 	switch ( specifier ) | ||||
| 	{ | ||||
| 		case Spec_Const : | ||||
| 		case Spec_Final : | ||||
| 		case Spec_NoExceptions : | ||||
| 		case Spec_Override : | ||||
| 		case Spec_Pure : | ||||
| 		case Spec_Volatile : | ||||
| 			return true; | ||||
|  | ||||
| 		default: | ||||
| 		default : | ||||
| 			return false; | ||||
| 	} | ||||
| } | ||||
|   | ||||
		Reference in New Issue
	
	Block a user