Visual Studio: Fixed compiler error. It seems visual studio 2008 doesn't like 'not'.

This commit is contained in:
Daniel Marjamäki 2010-10-02 09:42:31 +02:00
parent 6e0ef3eda2
commit bdb3c06c36
1 changed files with 1 additions and 1 deletions

View File

@ -24,7 +24,7 @@ options::options(int argc, const char* argv[])
{
_options.erase("-g");
_options.erase("-q");
if (not _options.empty())
if (! _options.empty())
{
_which_test = *_options.rbegin();
}