Reviewers: Kasper Lund, Description: Fix presumbit errors in previous commit
[email protected] Please review this at http://codereview.chromium.org/3249001/show SVN Base: http://v8.googlecode.com/svn/branches/bleeding_edge/ Affected files: M src/debug.h M src/x64/debug-x64.cc Index: src/debug.h =================================================================== --- src/debug.h (revision 5358) +++ src/debug.h (working copy) @@ -952,7 +952,7 @@ // code. class Debug_Address { public: - Debug_Address(Debug::AddressId id) : id_(id) { } + explicit Debug_Address(Debug::AddressId id) : id_(id) { } static Debug_Address AfterBreakTarget() { return Debug_Address(Debug::k_after_break_target_address); Index: src/x64/debug-x64.cc =================================================================== --- src/x64/debug-x64.cc (revision 5358) +++ src/x64/debug-x64.cc (working copy) @@ -105,7 +105,7 @@ __ SmiToInteger32(reg, reg); __ or_(reg, kScratchRegister); } - } + } // Get rid of the internal frame. __ LeaveInternalFrame(); -- v8-dev mailing list [email protected] http://groups.google.com/group/v8-dev
