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

Unified Diff: base/basictypes.h

Issue 1472083005: Remove kint64min. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@kint5
Patch Set: Created 5 years, 1 month 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
Index: base/basictypes.h
diff --git a/base/basictypes.h b/base/basictypes.h
index 8522ba5dd60a8f9f476e348d05128d6b9db5ad9b..c17cfbb42d4d7a7258ea39babe5d85e64cef456c 100644
--- a/base/basictypes.h
+++ b/base/basictypes.h
@@ -29,7 +29,6 @@ typedef uint64_t uint64;
const uint32 kuint32max = 0xFFFFFFFF;
const uint64 kuint64max = 0xFFFFFFFFFFFFFFFFULL;
const int32 kint32max = 0x7FFFFFFF;
-const int64 kint64min = -0x7FFFFFFFFFFFFFFFLL - 1;
const int64 kint64max = 0x7FFFFFFFFFFFFFFFLL;
#endif // BASE_BASICTYPES_H_

Powered by Google App Engine
This is Rietveld 408576698