Title: [163261] trunk/Source/WebCore
Revision
163261
Author
[email protected]
Date
2014-02-02 00:02:27 -0800 (Sun, 02 Feb 2014)

Log Message

REGRESSION(r163234) Debug build is broken
https://bugs.webkit.org/show_bug.cgi?id=128059

Unreviewed. Debug build is broken with INDEXED_DATABASE.

Patch by Hunseop Jeong <[email protected]> on 2014-02-01

* Modules/indexeddb/IDBKeyData.cpp:
(WebCore::IDBKeyData::loggingString): Added the default: case.

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (163260 => 163261)


--- trunk/Source/WebCore/ChangeLog	2014-02-02 07:45:32 UTC (rev 163260)
+++ trunk/Source/WebCore/ChangeLog	2014-02-02 08:02:27 UTC (rev 163261)
@@ -1,3 +1,13 @@
+2014-02-01  Hunseop Jeong  <[email protected]>
+
+        REGRESSION(r163234) Debug build is broken
+        https://bugs.webkit.org/show_bug.cgi?id=128059
+
+        Unreviewed. Debug build is broken with INDEXED_DATABASE.
+
+        * Modules/indexeddb/IDBKeyData.cpp:
+        (WebCore::IDBKeyData::loggingString): Added the default: case.
+
 2014-02-01  Zalan Bujtas  <[email protected]>
 
         Subpixel rendering: LayoutUnit operator++ is broken.

Modified: trunk/Source/WebCore/Modules/indexeddb/IDBKeyData.cpp (163260 => 163261)


--- trunk/Source/WebCore/Modules/indexeddb/IDBKeyData.cpp	2014-02-02 07:45:32 UTC (rev 163260)
+++ trunk/Source/WebCore/Modules/indexeddb/IDBKeyData.cpp	2014-02-02 08:02:27 UTC (rev 163261)
@@ -274,7 +274,10 @@
         return String::format("<number> - %f", numberValue);
     case IDBKey::MinType:
         return "<minimum>";
+    default:
+        return String();
     }
+    ASSERT_NOT_REACHED();
 }
 #endif
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to