aboutsummaryrefslogtreecommitdiff
path: root/devtools
diff options
context:
space:
mode:
authorFilippos Karapetis2015-07-20 00:55:11 +0300
committerFilippos Karapetis2015-07-20 01:00:09 +0300
commit23471eeb5306548878aedf75524ffba0af94cd61 (patch)
treec654a7fe65e088d41475592d792194c2a15e1613 /devtools
parentbf065764985cc05f6e7c098e274aea08b92fee8f (diff)
downloadscummvm-rg350-23471eeb5306548878aedf75524ffba0af94cd61.tar.gz
scummvm-rg350-23471eeb5306548878aedf75524ffba0af94cd61.tar.bz2
scummvm-rg350-23471eeb5306548878aedf75524ffba0af94cd61.zip
CREATE_PROJECT: Use NULL instead of nullptr
This allows create_project to be built with the C99 standard, instead of C11
Diffstat (limited to 'devtools')
-rw-r--r--devtools/create_project/xcode.cpp2
1 files changed, 1 insertions, 1 deletions
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);