diff options
author | Max Horn | 2008-01-28 15:20:25 +0000 |
---|---|---|
committer | Max Horn | 2008-01-28 15:20:25 +0000 |
commit | 25d92a602ef8b06c6d40f1dc0ecceb72b0dcb37b (patch) | |
tree | 20480bdd7ca11157818721c4fb2f229e69181ff3 | |
parent | 25172a852424cff709a1d06210928fe6c4c848dd (diff) | |
download | scummvm-rg350-25d92a602ef8b06c6d40f1dc0ecceb72b0dcb37b.tar.gz scummvm-rg350-25d92a602ef8b06c6d40f1dc0ecceb72b0dcb37b.tar.bz2 scummvm-rg350-25d92a602ef8b06c6d40f1dc0ecceb72b0dcb37b.zip |
Removed unneeded copy constructor & assignment operator (the compiler will auto-generate them for us)
svn-id: r30678
-rw-r--r-- | common/util.h | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/common/util.h b/common/util.h index 05e821eb01..8e5fd8d1ed 100644 --- a/common/util.h +++ b/common/util.h @@ -236,16 +236,6 @@ struct EngineDebugLevel { EngineDebugLevel() : option(""), description(""), level(0), enabled(false) {} EngineDebugLevel(uint32 l, const String &o, const String &d) : option(o), description(d), level(l), enabled(false) {} - EngineDebugLevel(const EngineDebugLevel ©) - : option(copy.option), description(copy.description), level(copy.level), enabled(copy.enabled) {} - - EngineDebugLevel &operator =(const EngineDebugLevel ©) { - option = copy.option; - description = copy.description; - level = copy.level; - enabled = copy.enabled; - return *this; - } String option; String description; |