Visual Studio: Fixed compiler error. It seems visual studio 2008 doesn't like 'not'.
This commit is contained in:
parent
6e0ef3eda2
commit
bdb3c06c36
|
@ -24,7 +24,7 @@ options::options(int argc, const char* argv[])
|
||||||
{
|
{
|
||||||
_options.erase("-g");
|
_options.erase("-g");
|
||||||
_options.erase("-q");
|
_options.erase("-q");
|
||||||
if (not _options.empty())
|
if (! _options.empty())
|
||||||
{
|
{
|
||||||
_which_test = *_options.rbegin();
|
_which_test = *_options.rbegin();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue