summaryrefslogtreecommitdiff
path: root/src/mbgl/style/value.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mbgl/style/value.hpp')
-rw-r--r--src/mbgl/style/value.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mbgl/style/value.hpp b/src/mbgl/style/value.hpp
index 4649134b20..0f3127e4f9 100644
--- a/src/mbgl/style/value.hpp
+++ b/src/mbgl/style/value.hpp
@@ -23,7 +23,7 @@ inline bool parseNumericString(const std::string &str, double &result) {
while (*end != '\0' && isspace(*end)) end++; // eat whitespace after the end
return errno == 0 && end - begin == long(str.size());
}
-}
+} // namespace util
template <typename T>
T toNumber(const Value &value) {
@@ -38,6 +38,6 @@ T toNumber(const Value &value) {
else return 0;
}
-}
+} // namespace mbgl
#endif