Progress on docs, adjustments

This commit is contained in:
2024-12-16 10:36:55 -05:00
parent abffa74ad8
commit 527fb3b132
11 changed files with 101 additions and 21 deletions

View File

@ -214,7 +214,18 @@ CodeBody gen_especifier( char const* path, bool use_c_definition = false )
inline
bool spec_is_trailing( Specifier specifier )
{
return specifier > Spec_Virtual;
switch (specifier) {
case Spec_Const:
case Spec_Final:
case Spec_NoExceptions:
case Spec_Override:
case Spec_Pure:
case Spec_Volatile:
return true;
default:
return false;
}
}
)));