summaryrefslogtreecommitdiff
path: root/include/mbgl/map
diff options
context:
space:
mode:
authorKonstantin Käfer <mail@kkaefer.com>2015-12-01 17:30:44 +0100
committerKonstantin Käfer <mail@kkaefer.com>2015-12-03 15:38:36 +0100
commitd5fb535058d4d97567b08064e0203f45c2c8370f (patch)
treef10e6d116f86405f1a432a6dc2fbc0122749169d /include/mbgl/map
parent6feb89cbbc50d31557c3d74d3a7ca97b474a7507 (diff)
downloadqtlocation-mapboxgl-d5fb535058d4d97567b08064e0203f45c2c8370f.tar.gz
[core] add namespace comment to closing brace
Diffstat (limited to 'include/mbgl/map')
-rw-r--r--include/mbgl/map/camera.hpp2
-rw-r--r--include/mbgl/map/map.hpp4
-rw-r--r--include/mbgl/map/view.hpp2
3 files changed, 4 insertions, 4 deletions
diff --git a/include/mbgl/map/camera.hpp b/include/mbgl/map/camera.hpp
index d787a39e11..18e7dbf96c 100644
--- a/include/mbgl/map/camera.hpp
+++ b/include/mbgl/map/camera.hpp
@@ -22,6 +22,6 @@ struct CameraOptions {
std::function<void()> transitionFinishFn;
};
-}
+} // namespace mbgl
#endif /* MBGL_MAP_CAMERA */
diff --git a/include/mbgl/map/map.hpp b/include/mbgl/map/map.hpp
index 5ea8c6f877..ad13d24eb6 100644
--- a/include/mbgl/map/map.hpp
+++ b/include/mbgl/map/map.hpp
@@ -30,7 +30,7 @@ struct CameraOptions;
namespace util {
template <class T> class Thread;
-}
+} // namespace util
struct EdgeInsets {
double top = 0;
@@ -189,6 +189,6 @@ private:
RenderState renderState = RenderState::never;
};
-}
+} // namespace mbgl
#endif
diff --git a/include/mbgl/map/view.hpp b/include/mbgl/map/view.hpp
index ecdd93377f..6f481c4458 100644
--- a/include/mbgl/map/view.hpp
+++ b/include/mbgl/map/view.hpp
@@ -80,6 +80,6 @@ public:
protected:
mbgl::Map *map = nullptr;
};
-}
+} // namespace mbgl
#endif