From ce988f32ccde81f0df4f4ce0231049456eb3f65e Mon Sep 17 00:00:00 2001 From: "ager@chromium.org" Date: Fri, 29 May 2009 19:17:48 +0000 Subject: [PATCH] Add a couple of parenthesis to improve readability and please certain GCC version. BUG=364 TBR=sgjesse@chromium.org Review URL: http://codereview.chromium.org/118016 git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@2083 ce2b1a6d-e550-0410-aec6-3dcde31c8c00 --- src/debug.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/debug.cc b/src/debug.cc index 0229df5..5a3722f 100644 --- a/src/debug.cc +++ b/src/debug.cc @@ -2044,7 +2044,7 @@ void Debugger::NotifyMessageHandler(v8::DebugEvent event, // in the queue if any. For script collected events don't even process // messages in the queue as the execution state might not be what is expected // by the client. - if (auto_continue && !HasCommands() || event == v8::ScriptCollected) { + if ((auto_continue && !HasCommands()) || event == v8::ScriptCollected) { return; } -- 2.7.4