Replace NULL with nullptr in header files

Fixes Clang 5.0 "-Wzero-as-null-pointer-constant" errors
This commit is contained in:
peterbell10 2017-12-11 12:23:26 +00:00
parent 7e9983b00f
commit 1c83894db9

View File

@ -63,7 +63,7 @@ public:
Database(const char* apFilename,
const int aFlags = SQLITE_OPEN_READONLY,
const int aBusyTimeoutMs = 0,
const char* apVfs = NULL);
const char* apVfs = nullptr);
/**
* @brief Open the provided database UTF-8 filename.