diff options
author | Johannes Schickel | 2015-12-12 06:09:12 +0100 |
---|---|---|
committer | Johannes Schickel | 2015-12-12 06:54:57 +0100 |
commit | 3ad5ad57e2fdac80cd4c79da958cd5122b941c60 (patch) | |
tree | b1e4af2c290cd9fe2780a27d86ebe01add18c909 /devtools | |
parent | 50807b3b0131664db7c073bc7fd14bf828e08e5e (diff) | |
download | scummvm-rg350-3ad5ad57e2fdac80cd4c79da958cd5122b941c60.tar.gz scummvm-rg350-3ad5ad57e2fdac80cd4c79da958cd5122b941c60.tar.bz2 scummvm-rg350-3ad5ad57e2fdac80cd4c79da958cd5122b941c60.zip |
DEVTOOLS: Use default copy constructor.
The formerly user supplied copy constructor was not identical to the default
generated, but the output of create_project for xcode is unchanged.
Diffstat (limited to 'devtools')
-rw-r--r-- | devtools/create_project/xcode.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/devtools/create_project/xcode.h b/devtools/create_project/xcode.h index 7a1e540df1..3f037ebfc4 100644 --- a/devtools/create_project/xcode.h +++ b/devtools/create_project/xcode.h @@ -131,12 +131,6 @@ private: _settings[name] = setting; } - // Copy constructor - Property(const Property &rhs) { - _settings = rhs._settings; - _flags = rhs._flags; - } - OrderedSettingList getOrderedSettingList() { OrderedSettingList list; |