minor updates for better unused code cleanup in the c_library

This commit is contained in:
2024-12-16 17:18:52 -05:00
parent 6533a3be29
commit 6689235691
6 changed files with 30 additions and 29 deletions

View File

@ -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;
}
}