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

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: Fix slow dchecks. 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
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)

Powered by Google App Engine
This is Rietveld 408576698