Title: [155136] trunk/Source/WebCore
Revision
155136
Author
[email protected]
Date
2013-09-05 11:29:30 -0700 (Thu, 05 Sep 2013)

Log Message

Fix build warning about unused variable.

Unreviewed build fix.

* bindings/js/ScriptDebugServer.cpp:
(WebCore::ScriptDebugServer::evaluateBreakpointAction):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (155135 => 155136)


--- trunk/Source/WebCore/ChangeLog	2013-09-05 18:23:02 UTC (rev 155135)
+++ trunk/Source/WebCore/ChangeLog	2013-09-05 18:29:30 UTC (rev 155136)
@@ -1,3 +1,12 @@
+2013-09-05  Joseph Pecoraro  <[email protected]>
+
+        Fix build warning about unused variable.
+
+        Unreviewed build fix.
+
+        * bindings/js/ScriptDebugServer.cpp:
+        (WebCore::ScriptDebugServer::evaluateBreakpointAction):
+
 2013-09-05  Anders Carlsson  <[email protected]>
 
         Enable C++11 wherever we build C++ files that include wtf/Platform.h

Modified: trunk/Source/WebCore/bindings/js/ScriptDebugServer.cpp (155135 => 155136)


--- trunk/Source/WebCore/bindings/js/ScriptDebugServer.cpp	2013-09-05 18:23:02 UTC (rev 155135)
+++ trunk/Source/WebCore/bindings/js/ScriptDebugServer.cpp	2013-09-05 18:29:30 UTC (rev 155136)
@@ -194,7 +194,7 @@
     }
     case ScriptBreakpointActionTypeEvaluate: {
         JSValue exception;
-        JSValue result = m_currentCallFrame->evaluate(breakpointAction.data, exception);
+        m_currentCallFrame->evaluate(breakpointAction.data, exception);
         if (exception)
             reportException(m_currentCallFrame->exec(), exception);
         break;
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to