summaryrefslogtreecommitdiff
path: root/src/mbgl/geometry/fill_buffer.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mbgl/geometry/fill_buffer.cpp')
-rw-r--r--src/mbgl/geometry/fill_buffer.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mbgl/geometry/fill_buffer.cpp b/src/mbgl/geometry/fill_buffer.cpp
index ee70dfc53b..6cb07ea66a 100644
--- a/src/mbgl/geometry/fill_buffer.cpp
+++ b/src/mbgl/geometry/fill_buffer.cpp
@@ -4,10 +4,12 @@
#include <climits>
-using namespace mbgl;
+namespace mbgl {
void FillVertexBuffer::add(vertex_type x, vertex_type y) {
vertex_type *vertices = static_cast<vertex_type *>(addElement());
vertices[0] = x;
vertices[1] = y;
}
+
+} // namespace mbgl