fixed ‘nullptr’ was not declared in this scope on ubuntu-16.04

This commit is contained in:
Scott R Charlton 2024-03-04 18:42:52 -07:00
parent ba2ac19165
commit 79518deebc

View File

@ -16,6 +16,10 @@
# define nullptr NULL
#endif
#if __cplusplus < 201103L // Check if C++ standard is pre-C++11
# define nullptr NULL
#endif
#if defined(PHREEQCI_GUI)
#ifdef _DEBUG
#define new DEBUG_NEW