mirror of
https://github.com/jezhiggins/arabica
synced 2025-01-17 18:12:04 +01:00
Added default case to switch to stop GCC complain that not all the enum
states are accounted for.
This commit is contained in:
parent
80a16c347c
commit
961078a18a
1 changed files with 2 additions and 0 deletions
|
@ -200,6 +200,8 @@ operator<<(std::basic_ostream<charT, traitsT>& stream,
|
|||
<< UnicodeT::HYPHEN_MINUS
|
||||
<< UnicodeT::GREATER_THAN_SIGN;
|
||||
break;
|
||||
default: // keep GCC quiet
|
||||
break;
|
||||
} // switch
|
||||
|
||||
return stream;
|
||||
|
|
Loading…
Reference in a new issue