From 3a74fd28bd2ae954ecc8d31f2929d97add0fe2d0 Mon Sep 17 00:00:00 2001 From: Kamil Lysik Date: Mon, 23 Feb 2015 10:19:41 +0100 Subject: [PATCH] [Filesystem] Code style fix There is missing comment at the end of namespace. Change-Id: I1b2a7bf8eea3b36916cd132e3a9687e9547cb44d Signed-off-by: Kamil Lysik --- src/filesystem/filesystem_manager.h | 4 ++-- src/filesystem/filesystem_stat.h | 4 ++-- src/filesystem/filesystem_storage.h | 4 ++-- src/filesystem/filesystem_utils.h | 4 ++-- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/src/filesystem/filesystem_manager.h b/src/filesystem/filesystem_manager.h index b2b8eb02..97028204 100644 --- a/src/filesystem/filesystem_manager.h +++ b/src/filesystem/filesystem_manager.h @@ -36,7 +36,7 @@ class FilesystemManager { success_cb, const std::function& error_cb); }; -} -} +} // namespace filesystem +} // namespace extension #endif // FILESYSTEM_FILESYSTEM_MANAGER_H diff --git a/src/filesystem/filesystem_stat.h b/src/filesystem/filesystem_stat.h index e69c3445..39474942 100644 --- a/src/filesystem/filesystem_stat.h +++ b/src/filesystem/filesystem_stat.h @@ -29,7 +29,7 @@ class FilesystemStat { static FilesystemStat getStat(const std::string& path); }; -} -} +} // namespace filesystem +} // namespace extension #endif // FILESYSTEM_FILESYSTEM_STAT_H diff --git a/src/filesystem/filesystem_storage.h b/src/filesystem/filesystem_storage.h index 12b1f88c..9ea5e879 100644 --- a/src/filesystem/filesystem_storage.h +++ b/src/filesystem/filesystem_storage.h @@ -40,7 +40,7 @@ class FilesystemStorage { picojson::value toJSON() const; }; -} -} +} // namespace filesystem +} // namespace extension #endif // FILESYSTEM_FILESYSTEM_STORAGE_H diff --git a/src/filesystem/filesystem_utils.h b/src/filesystem/filesystem_utils.h index 6f6db34a..e83ae406 100644 --- a/src/filesystem/filesystem_utils.h +++ b/src/filesystem/filesystem_utils.h @@ -18,8 +18,8 @@ enum class FilesystemError { PermissionDenied, Other }; -} -} +} // namespace filesystem +} // namespace extension namespace std { -- 2.34.1