From: yangguo@chromium.org Date: Wed, 5 Nov 2014 08:52:38 +0000 (+0000) Subject: Fix enum in debug.h X-Git-Tag: upstream/4.7.83~5892 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=fcd25e4d0f3c67d973a5683d9b765e2943a8423b;p=platform%2Fupstream%2Fv8.git Fix enum in debug.h TBR=ishell@chromium.org Review URL: https://codereview.chromium.org/700103002 Cr-Commit-Position: refs/heads/master@{#25131} git-svn-id: https://v8.googlecode.com/svn/branches/bleeding_edge@25131 ce2b1a6d-e550-0410-aec6-3dcde31c8c00 --- diff --git a/src/debug.h b/src/debug.h index 3bfa02f..e486d97 100644 --- a/src/debug.h +++ b/src/debug.h @@ -54,7 +54,7 @@ enum ExceptionBreakType { enum BreakLocatorType { ALL_BREAK_LOCATIONS = 0, SOURCE_BREAK_LOCATIONS = 1, - CALLS_AND_RETURNS = 2, + CALLS_AND_RETURNS = 2 };