aboutsummaryrefslogtreecommitdiff
path: root/common/util.h
diff options
context:
space:
mode:
Diffstat (limited to 'common/util.h')
-rw-r--r--common/util.h10
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 &copy)
- : option(copy.option), description(copy.description), level(copy.level), enabled(copy.enabled) {}
-
- EngineDebugLevel &operator =(const EngineDebugLevel &copy) {
- option = copy.option;
- description = copy.description;
- level = copy.level;
- enabled = copy.enabled;
- return *this;
- }
String option;
String description;