Skip to content

Commit bdb3c06

Browse files
author
Daniel Marjamäki
committed
Visual Studio: Fixed compiler error. It seems visual studio 2008 doesn't like 'not'.
1 parent 6e0ef3e commit bdb3c06

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/options.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ options::options(int argc, const char* argv[])
2424
{
2525
_options.erase("-g");
2626
_options.erase("-q");
27-
if (not _options.empty())
27+
if (! _options.empty())
2828
{
2929
_which_test = *_options.rbegin();
3030
}

0 commit comments

Comments
 (0)