Revision: 23061
Author: [email protected]
Date: Mon Aug 11 22:17:19 2014 UTC
Log: Fix presubmit error.
No idea why they suddenly started to appear.
[email protected]
Review URL: https://codereview.chromium.org/458743005
http://code.google.com/p/v8/source/detail?r=23061
Modified:
/branches/bleeding_edge/src/objects.h
=======================================
--- /branches/bleeding_edge/src/objects.h Mon Aug 11 21:44:08 2014 UTC
+++ /branches/bleeding_edge/src/objects.h Mon Aug 11 22:17:19 2014 UTC
@@ -7541,7 +7541,7 @@
// Printing support.
struct SourceCodeOf {
- SourceCodeOf(SharedFunctionInfo* v, int max = -1)
+ explicit SourceCodeOf(SharedFunctionInfo* v, int max = -1)
: value(v), max_length(max) {}
const SharedFunctionInfo* value;
int max_length;
@@ -9745,7 +9745,8 @@
class ConsStringIteratorOp {
public:
inline ConsStringIteratorOp() {}
- inline ConsStringIteratorOp(ConsString* cons_string, int offset = 0) {
+ inline explicit ConsStringIteratorOp(ConsString* cons_string,
+ int offset = 0) {
Reset(cons_string, offset);
}
inline void Reset(ConsString* cons_string, int offset = 0) {
--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
---
You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/d/optout.