Fixed VS compiler warning. Using 'struct' for class. Thanks XhmikosR for reporting.
This commit is contained in:
parent
826ddf8a6d
commit
872b6e8fcc
|
@ -2180,7 +2180,7 @@ private:
|
||||||
// for 1st parameter null pointer is not ok..
|
// for 1st parameter null pointer is not ok..
|
||||||
{
|
{
|
||||||
Library library;
|
Library library;
|
||||||
struct Library::ArgumentChecks arg;
|
Library::ArgumentChecks arg;
|
||||||
library.argumentChecks["x"][1] = arg;
|
library.argumentChecks["x"][1] = arg;
|
||||||
library.argumentChecks["x"][2] = arg;
|
library.argumentChecks["x"][2] = arg;
|
||||||
library.argumentChecks["x"][1].notnull = true;
|
library.argumentChecks["x"][1].notnull = true;
|
||||||
|
|
Loading…
Reference in New Issue