Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(363)

Unified Diff: content/browser/cache_storage/cache_storage.cc

Issue 2607983002: avoid GCC content::CacheStorage::kSizeUnknown redeclaration error (Closed)
Patch Set: const -> constexpr Created 3 years, 12 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/cache_storage/cache_storage.cc
diff --git a/content/browser/cache_storage/cache_storage.cc b/content/browser/cache_storage/cache_storage.cc
index d32fc3d96b9af3e54d9e5920c0f75415ff27e574..b565cc0a8135bc0d8ab32d527a8ba57b8388486a 100644
--- a/content/browser/cache_storage/cache_storage.cc
+++ b/content/browser/cache_storage/cache_storage.cc
@@ -59,7 +59,7 @@ void DoNothingWithBool(bool success) {}
} // namespace
const char CacheStorage::kIndexFileName[] = "index.txt";
-const int64_t CacheStorage::kSizeUnknown;
+constexpr int64_t CacheStorage::kSizeUnknown;
struct CacheStorage::CacheMatchResponse {
CacheMatchResponse() = default;
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698