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

Unified Diff: tools/traceline/traceline/assembler.h

Issue 7477008: Remove explicit keyword from multi-argument constructors (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 5 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 | « skia/ext/vector_platform_device_cairo_linux.h ('k') | ui/gfx/gl/gl_surface_egl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/traceline/traceline/assembler.h
diff --git a/tools/traceline/traceline/assembler.h b/tools/traceline/traceline/assembler.h
index 232fb36c0a4054407e53a19999ea9128f0e3a2d8..6ae69587020d731a8867555305ba6fb90dd1db55 100644
--- a/tools/traceline/traceline/assembler.h
+++ b/tools/traceline/traceline/assembler.h
@@ -175,22 +175,17 @@ class Operand {
}
// [base + disp/r]
- explicit Operand(Register base, int disp) {
+ Operand(Register base, int disp) {
Init(base, disp);
}
// [base + index*scale + disp/r]
- explicit Operand(Register base,
- Register index,
- ScaleFactor scale,
- int disp) {
+ Operand(Register base, Register index, ScaleFactor scale, int disp) {
Init(base, index, scale, disp);
}
// [index*scale + disp/r]
- explicit Operand(Register index,
- ScaleFactor scale,
- int disp) {
+ Operand(Register index, ScaleFactor scale, int disp) {
Init(index, scale, disp);
}
« no previous file with comments | « skia/ext/vector_platform_device_cairo_linux.h ('k') | ui/gfx/gl/gl_surface_egl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698