Title: [164954] trunk/Source/_javascript_Core
Revision
164954
Author
[email protected]
Date
2014-03-02 16:03:06 -0800 (Sun, 02 Mar 2014)

Log Message

CodeBlock::hasDebuggerRequests() should returning a bool instead of an int.
<https://webkit.org/b/129584>

Reviewed by Darin Adler.

* bytecode/CodeBlock.h:
(JSC::CodeBlock::hasDebuggerRequests):

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (164953 => 164954)


--- trunk/Source/_javascript_Core/ChangeLog	2014-03-02 23:14:47 UTC (rev 164953)
+++ trunk/Source/_javascript_Core/ChangeLog	2014-03-03 00:03:06 UTC (rev 164954)
@@ -1,5 +1,15 @@
 2014-03-02  Mark Lam  <[email protected]>
 
+        CodeBlock::hasDebuggerRequests() should returning a bool instead of an int.
+        <https://webkit.org/b/129584>
+
+        Reviewed by Darin Adler.
+
+        * bytecode/CodeBlock.h:
+        (JSC::CodeBlock::hasDebuggerRequests):
+
+2014-03-02  Mark Lam  <[email protected]>
+
         Clean up use of Options::enableConcurrentJIT().
         <https://webkit.org/b/129582>
 

Modified: trunk/Source/_javascript_Core/bytecode/CodeBlock.h (164953 => 164954)


--- trunk/Source/_javascript_Core/bytecode/CodeBlock.h	2014-03-02 23:14:47 UTC (rev 164953)
+++ trunk/Source/_javascript_Core/bytecode/CodeBlock.h	2014-03-03 00:03:06 UTC (rev 164954)
@@ -877,7 +877,7 @@
 
     bool hasOpDebugForLineAndColumn(unsigned line, unsigned column);
 
-    int hasDebuggerRequests() const { return !!m_debuggerRequests; }
+    bool hasDebuggerRequests() const { return !!m_debuggerRequests; }
     void* debuggerRequestsAddress() { return &m_debuggerRequests; }
 
     void addBreakpoint(unsigned numBreakpoints);
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to