Added default case to switch to stop GCC complain that not all the enum

states are accounted for.
This commit is contained in:
jez_higgins 2003-09-09 09:45:17 +00:00
parent 80a16c347c
commit 961078a18a

View file

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