From bdb3c06c36f6504e11a500a49028c8531be03eaa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Marjam=C3=A4ki?= Date: Sat, 2 Oct 2010 09:42:31 +0200 Subject: [PATCH] Visual Studio: Fixed compiler error. It seems visual studio 2008 doesn't like 'not'. --- test/options.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/options.cpp b/test/options.cpp index 63db454c4..cb1488f90 100644 --- a/test/options.cpp +++ b/test/options.cpp @@ -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(); }