summaryrefslogtreecommitdiffstats
path: root/engine/labelled.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engine/labelled.cpp')
-rw-r--r--engine/labelled.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engine/labelled.cpp b/engine/labelled.cpp
index 48e6091..e39686c 100644
--- a/engine/labelled.cpp
+++ b/engine/labelled.cpp
@@ -5,8 +5,8 @@
using namespace std;
using namespace flat::core;
-labelled::labelled(const std::string& label, bool allow_null)
- : label((!allow_null && label.empty()) ? random_label() : label) {}
+labelled::labelled(const std::string& _label, bool allow_null)
+ : label((!allow_null && _label.empty()) ? random_label() : _label) {}
string labelled::random_label(uint8_t length) {