diff options
author | D G Turner | 2018-10-07 08:57:03 +0100 |
---|---|---|
committer | D G Turner | 2018-10-07 08:57:03 +0100 |
commit | 48ece56bafbcf5e940de6dda759f63dfcab2b57c (patch) | |
tree | 7a9c6593bcea64f45c47da8dac7d91595330e937 /devtools | |
parent | cc2260d80d65b6fb06d27a79c2f254e1d6a578ad (diff) | |
download | scummvm-rg350-48ece56bafbcf5e940de6dda759f63dfcab2b57c.tar.gz scummvm-rg350-48ece56bafbcf5e940de6dda759f63dfcab2b57c.tar.bz2 scummvm-rg350-48ece56bafbcf5e940de6dda759f63dfcab2b57c.zip |
DEVTOOLS: Fix Performance Issue Warning in create_project.
This is the last fix for bug Trac #10655.
Diffstat (limited to 'devtools')
-rw-r--r-- | devtools/create_project/xcode.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/devtools/create_project/xcode.h b/devtools/create_project/xcode.h index c3b44b2590..a32e667937 100644 --- a/devtools/create_project/xcode.h +++ b/devtools/create_project/xcode.h @@ -64,7 +64,7 @@ private: std::string _filePath; std::string _sourceTree; - FileProperty(std::string fileType = "", std::string name = "", std::string path = "", std::string source = "") + FileProperty(const std::string &fileType = "", const std::string &name = "", const std::string &path = "", const std::string &source = "") : _fileEncoding(""), _lastKnownFileType(fileType), _fileName(name), _filePath(path), _sourceTree(source) { } }; |