summaryrefslogtreecommitdiff
path: root/include/mbgl/storage
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/storage
parent6feb89cbbc50d31557c3d74d3a7ca97b474a7507 (diff)
downloadqtlocation-mapboxgl-d5fb535058d4d97567b08064e0203f45c2c8370f.tar.gz
[core] add namespace comment to closing brace
Diffstat (limited to 'include/mbgl/storage')
-rw-r--r--include/mbgl/storage/default_file_source.hpp4
-rw-r--r--include/mbgl/storage/file_cache.hpp2
-rw-r--r--include/mbgl/storage/file_source.hpp2
-rw-r--r--include/mbgl/storage/network_status.hpp4
-rw-r--r--include/mbgl/storage/resource.hpp2
-rw-r--r--include/mbgl/storage/sqlite_cache.hpp4
6 files changed, 9 insertions, 9 deletions
diff --git a/include/mbgl/storage/default_file_source.hpp b/include/mbgl/storage/default_file_source.hpp
index 8d2832b33b..e669cebf72 100644
--- a/include/mbgl/storage/default_file_source.hpp
+++ b/include/mbgl/storage/default_file_source.hpp
@@ -8,7 +8,7 @@ namespace mbgl {
namespace util {
template <typename T> class Thread;
-}
+} // namespace util
class DefaultFileSource : public FileSource {
public:
@@ -29,6 +29,6 @@ private:
std::string accessToken;
};
-}
+} // namespace mbgl
#endif
diff --git a/include/mbgl/storage/file_cache.hpp b/include/mbgl/storage/file_cache.hpp
index b32bdf67e6..65d6dfbff0 100644
--- a/include/mbgl/storage/file_cache.hpp
+++ b/include/mbgl/storage/file_cache.hpp
@@ -23,6 +23,6 @@ public:
virtual void put(const Resource &resource, std::shared_ptr<const Response> response, Hint hint) = 0;
};
-}
+} // namespace mbgl
#endif
diff --git a/include/mbgl/storage/file_source.hpp b/include/mbgl/storage/file_source.hpp
index 0167eccc08..8d08315cd9 100644
--- a/include/mbgl/storage/file_source.hpp
+++ b/include/mbgl/storage/file_source.hpp
@@ -30,6 +30,6 @@ public:
virtual std::unique_ptr<FileRequest> request(const Resource&, Callback) = 0;
};
-}
+} // namespace mbgl
#endif
diff --git a/include/mbgl/storage/network_status.hpp b/include/mbgl/storage/network_status.hpp
index a1c417c4cf..2a0ab78edd 100644
--- a/include/mbgl/storage/network_status.hpp
+++ b/include/mbgl/storage/network_status.hpp
@@ -8,7 +8,7 @@ namespace mbgl {
namespace util {
class AsyncTask;
-}
+} // namespace util
class NetworkStatus {
public:
@@ -22,6 +22,6 @@ private:
static std::set<util::AsyncTask*> observers;
};
-}
+} // namespace mbgl
#endif
diff --git a/include/mbgl/storage/resource.hpp b/include/mbgl/storage/resource.hpp
index 0c2a27e9d1..1bbd90ea37 100644
--- a/include/mbgl/storage/resource.hpp
+++ b/include/mbgl/storage/resource.hpp
@@ -32,6 +32,6 @@ struct Resource {
};
-}
+} // namespace mbgl
#endif
diff --git a/include/mbgl/storage/sqlite_cache.hpp b/include/mbgl/storage/sqlite_cache.hpp
index 3054b6c73c..4b51d94920 100644
--- a/include/mbgl/storage/sqlite_cache.hpp
+++ b/include/mbgl/storage/sqlite_cache.hpp
@@ -9,7 +9,7 @@ namespace mbgl {
namespace util {
template <typename T> class Thread;
-}
+} // namespace util
class SQLiteCache : public FileCache {
public:
@@ -36,6 +36,6 @@ private:
static std::weak_ptr<SQLiteCache> masterPtr;
};
-}
+} // namespace mbgl
#endif