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

Unified Diff: src/deoptimizer.h

Issue 888613002: Initial switch to Chromium-style CHECK_* and DCHECK_* macros. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: CHECK_NULL/NOT_NULL is back. Created 5 years, 11 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 | « src/compiler/zone-pool.cc ('k') | src/deoptimizer.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/deoptimizer.h
diff --git a/src/deoptimizer.h b/src/deoptimizer.h
index b14c3697418a7beb27c980f74eac43811c6c5391..4a95df215b51890a2b90c68c3906f4ec586f3579 100644
--- a/src/deoptimizer.h
+++ b/src/deoptimizer.h
@@ -98,7 +98,7 @@ class Deoptimizer : public Malloced {
DEBUGGER
};
- static const int kBailoutTypesWithCodeEntry = SOFT + 1;
+ enum { kBailoutTypesWithCodeEntry = SOFT + 1 };
struct Reason {
Reason(int r, const char* m, const char* d)
« no previous file with comments | « src/compiler/zone-pool.cc ('k') | src/deoptimizer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698