From 872b6e8fcc271fde7ec52f3d66dd1d750736a25a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Marjam=C3=A4ki?= Date: Thu, 26 Dec 2013 17:48:25 +0100 Subject: [PATCH] Fixed VS compiler warning. Using 'struct' for class. Thanks XhmikosR for reporting. --- test/testnullpointer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/testnullpointer.cpp b/test/testnullpointer.cpp index 70eafea94..de8d9440f 100644 --- a/test/testnullpointer.cpp +++ b/test/testnullpointer.cpp @@ -2180,7 +2180,7 @@ private: // for 1st parameter null pointer is not ok.. { Library library; - struct Library::ArgumentChecks arg; + Library::ArgumentChecks arg; library.argumentChecks["x"][1] = arg; library.argumentChecks["x"][2] = arg; library.argumentChecks["x"][1].notnull = true;