summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/lib/user_property.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/lib/user_property.h b/src/lib/user_property.h
index fb597eeb6..14b30c2ff 100644
--- a/src/lib/user_property.h
+++ b/src/lib/user_property.h
@@ -37,11 +37,11 @@ public:
};
template <class T>
- UserProperty (Category category_, std::string key_, T value_, std::string unit_ = "")
- : category (category_)
- , key (key_)
- , value (dcp::locale_convert<std::string> (value_))
- , unit (unit_)
+ UserProperty(Category category_, std::string key_, T value_, std::string unit_ = "")
+ : category(category_)
+ , key(key_)
+ , value(dcp::locale_convert<std::string>(value_))
+ , unit(unit_)
{}
Category category;