summaryrefslogtreecommitdiffstats
path: root/base/logging.h
diff options
context:
space:
mode:
Diffstat (limited to 'base/logging.h')
-rw-r--r--base/logging.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/base/logging.h b/base/logging.h
index baedb8b..ee3ab40 100644
--- a/base/logging.h
+++ b/base/logging.h
@@ -259,7 +259,9 @@ std::string* MakeCheckOpString(const t1& v1, const t2& v2, const char* names) {
extern std::string* MakeCheckOpStringIntInt(int v1, int v2, const char* names);
template<int, int>
-std::string* MakeCheckOpString(const int& v1, const int& v2, const char* names) {
+std::string* MakeCheckOpString(const int& v1,
+ const int& v2,
+ const char* names) {
return MakeCheckOpStringIntInt(v1, v2, names);
}