From 23471eeb5306548878aedf75524ffba0af94cd61 Mon Sep 17 00:00:00 2001 From: Filippos Karapetis Date: Mon, 20 Jul 2015 00:55:11 +0300 Subject: CREATE_PROJECT: Use NULL instead of nullptr This allows create_project to be built with the C99 standard, instead of C11 --- devtools/create_project/xcode.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/devtools/create_project/xcode.cpp b/devtools/create_project/xcode.cpp index 49c47c54ca..babd530ad7 100644 --- a/devtools/create_project/xcode.cpp +++ b/devtools/create_project/xcode.cpp @@ -157,7 +157,7 @@ XcodeProvider::Group *XcodeProvider::Group::getChildGroup(const std::string &nam } XcodeProvider::Group *XcodeProvider::touchGroupsForPath(const std::string &path) { - if (_rootSourceGroup == nullptr) { + if (_rootSourceGroup == NULL) { assert (path == _projectRoot); _rootSourceGroup = new Group(this, "Sources", path, path); _groups.add(_rootSourceGroup); -- cgit v1.2.3