summaryrefslogtreecommitdiffstats
path: root/Source/WebCore/Modules/indexeddb
diff options
context:
space:
mode:
Diffstat (limited to 'Source/WebCore/Modules/indexeddb')
-rw-r--r--Source/WebCore/Modules/indexeddb/server/SQLiteIDBBackingStore.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/WebCore/Modules/indexeddb/server/SQLiteIDBBackingStore.cpp b/Source/WebCore/Modules/indexeddb/server/SQLiteIDBBackingStore.cpp
index 1550df4c1..b886b1372 100644
--- a/Source/WebCore/Modules/indexeddb/server/SQLiteIDBBackingStore.cpp
+++ b/Source/WebCore/Modules/indexeddb/server/SQLiteIDBBackingStore.cpp
@@ -578,7 +578,7 @@ IDBError SQLiteIDBBackingStore::getOrEstablishDatabaseInfo(IDBDatabaseInfo& info
if (!m_sqliteDB)
return { IDBDatabaseException::UnknownError, ASCIILiteral("Unable to open database file on disk") };
- m_sqliteDB->setCollationFunction("IDBKEY", [this](int aLength, const void* a, int bLength, const void* b) {
+ m_sqliteDB->setCollationFunction("IDBKEY", [](int aLength, const void* a, int bLength, const void* b) {
return idbKeyCollate(aLength, a, bLength, b);
});