summaryrefslogtreecommitdiff
path: root/include/mbgl/util/enum.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/mbgl/util/enum.hpp')
-rw-r--r--include/mbgl/util/enum.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/mbgl/util/enum.hpp b/include/mbgl/util/enum.hpp
index 3c3e4a5c4e..5d64ed6718 100644
--- a/include/mbgl/util/enum.hpp
+++ b/include/mbgl/util/enum.hpp
@@ -49,7 +49,7 @@ public:
using name = ::mbgl::Enum<type, type##_names, sizeof(type##_names) / sizeof(::mbgl::EnumValue<type>)>; \
inline std::ostream& operator<<(std::ostream& os, type t) { return os << name(t).str(); }
-}
+} // namespace mbgl
#endif