aboutsummaryrefslogtreecommitdiff
path: root/devtools/create_project/xcode.cpp
diff options
context:
space:
mode:
authorVincent Bénony2016-01-06 15:11:40 +0100
committerVincent Bénony2016-01-06 16:19:11 +0100
commit4687ff6d6d2863cc95c8137543ecf9c39bc01723 (patch)
treefb2a24cc7f475e8a29f99c7b3c5d85b56806aa06 /devtools/create_project/xcode.cpp
parenta3346064ac2b96acb30a335584829515ed61eb22 (diff)
downloadscummvm-rg350-4687ff6d6d2863cc95c8137543ecf9c39bc01723.tar.gz
scummvm-rg350-4687ff6d6d2863cc95c8137543ecf9c39bc01723.tar.bz2
scummvm-rg350-4687ff6d6d2863cc95c8137543ecf9c39bc01723.zip
DEVTOOL: Cleanup
Diffstat (limited to 'devtools/create_project/xcode.cpp')
-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 5a433f1dd0..a4fbbf1cb9 100644
--- a/devtools/create_project/xcode.cpp
+++ b/devtools/create_project/xcode.cpp
@@ -1126,7 +1126,7 @@ std::string XcodeProvider::writeProperty(const std::string &variable, Property &
if (settings.size() > 1 || (prop._flags & kSettingsSingleItem))
output += (flags & kSettingsSingleItem ? " " : "\t\t\t\t");
- output += writeSetting((*setting).first, (*setting).second);
+ output += writeSetting(setting->first, setting->second);
// The combination of SettingsAsList, and kSettingsSingleItem should use "," and not ";" (i.e children
// in PBXGroup, so we special case that case here.