summaryrefslogtreecommitdiff
path: root/test/miscellaneous/binpack.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/miscellaneous/binpack.cpp')
-rw-r--r--test/miscellaneous/binpack.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/miscellaneous/binpack.cpp b/test/miscellaneous/binpack.cpp
index a597f0a299..54f410a0be 100644
--- a/test/miscellaneous/binpack.cpp
+++ b/test/miscellaneous/binpack.cpp
@@ -9,7 +9,7 @@ namespace mbgl {
template <typename T> ::std::ostream& operator<<(::std::ostream& os, const Rect<T>& t) {
return os << "Rect { " << t.x << ", " << t.y << ", " << t.w << ", " << t.h << " }";
}
-}
+} // namespace mbgl
TEST(BinPack, Allocating) {
mbgl::BinPack<uint16_t> bin(128, 128);