CREATE_PROJECT: Use NULL instead of nullptr

This allows create_project to be built with the C99 standard, instead
of C11
This commit is contained in:
Filippos Karapetis
2015-07-20 01:00:09 +03:00
parent bf06576498
commit 23471eeb53
+1 -1
View File
@@ -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);