Database: Use nullptr instead of NULL where applicable

This commit is contained in:
Lioncash 2019-08-19 23:09:41 -04:00
parent 66125c2b3b
commit 263c0697bc
1 changed files with 1 additions and 1 deletions

View File

@ -261,7 +261,7 @@ public:
class ConfigFile { class ConfigFile {
SystemString m_filepath; SystemString m_filepath;
std::vector<std::string> m_lines; std::vector<std::string> m_lines;
FILE* m_lockedFile = NULL; FILE* m_lockedFile = nullptr;
public: public:
ConfigFile(const Project& project, SystemStringView name, SystemStringView subdir = _SYS_STR("/.hecl/")); ConfigFile(const Project& project, SystemStringView name, SystemStringView subdir = _SYS_STR("/.hecl/"));