Reviewers: fschneider,
Description:
Fix presubmit error.
Single argument constructors should be marked explicit.
[email protected]
Please review this at http://codereview.chromium.org/876005
Affected files:
M src/data-flow.h
Index: src/data-flow.h
diff --git a/src/data-flow.h b/src/data-flow.h
index
404b3b337e792606ddc202ad37adebae5613b623..236d0ad44107611dda65546198ce4163bb388359
100644
--- a/src/data-flow.h
+++ b/src/data-flow.h
@@ -143,7 +143,7 @@ class WorkList BASE_EMBEDDED {
public:
// The worklist cannot grow bigger than size. We keep one item empty to
// distinguish between empty and full.
- WorkList(int size)
+ explicit WorkList(int size)
: capacity_(size + 1), head_(0), tail_(0), queue_(capacity_) {
for (int i = 0; i < capacity_; i++) queue_.Add(NULL);
}
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev