From 349c0de0912884388f2490d4bfd6905424ccf194 Mon Sep 17 00:00:00 2001 From: Lars Knoll Date: Tue, 20 Mar 2012 20:45:27 +0100 Subject: Significantly speed up insertion into QJsonObject/Array The code was only allocating memory for the next insertion leading to a reallocation of the whole data for every single insertion. The code now reserves some space and uses a decent growth strategy to avoid repeated reallocs. Change-Id: I48b0feab71ba8ca73e7037f8460080f198b2f009 Reviewed-by: Jamey Hicks --- src/corelib/json/qjson.cpp | 8 -------- 1 file changed, 8 deletions(-) (limited to 'src/corelib/json/qjson.cpp') diff --git a/src/corelib/json/qjson.cpp b/src/corelib/json/qjson.cpp index 4f7372a6c0..26f26b211e 100644 --- a/src/corelib/json/qjson.cpp +++ b/src/corelib/json/qjson.cpp @@ -241,14 +241,6 @@ bool Entry::operator ==(const QString &key) const return (shallowKey() == key); } -bool Entry::operator >=(const QString &key) const -{ - if (value.latinKey) - return (shallowLatin1Key() >= key); - else - return (shallowKey() >= key); -} - bool Entry::operator ==(const Entry &other) const { if (value.latinKey) { -- cgit v1.2.3