Update VImage8.h

Should fix the “nullptr undeclared” issue.
This commit is contained in:
Fingolfin1196 2018-10-10 15:57:50 +02:00 committed by GitHub
parent b0f21d2727
commit c7f828e968
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -162,7 +162,7 @@ public:
bool is_null() const
{
return vobject == nullptr;
return vobject == 0;
}
};