aboutsummaryrefslogtreecommitdiffstats
path: root/common/property.cc
diff options
context:
space:
mode:
Diffstat (limited to 'common/property.cc')
-rw-r--r--common/property.cc1
1 files changed, 0 insertions, 1 deletions
diff --git a/common/property.cc b/common/property.cc
index 945462f8..76cb8bf8 100644
--- a/common/property.cc
+++ b/common/property.cc
@@ -36,7 +36,6 @@ Property::Property(const std::string &strval) : is_string(true), str(strval), in
Property::Property(State bit) : is_string(false), str(std::string("") + char(bit)), intval(bit == S1) {}
-
std::string Property::to_string() const
{
if (is_string) {