summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLars Knoll <lars.knoll@nokia.com>2012-01-17 10:39:10 +0100
committerLars Knoll <lars.knoll@nokia.com>2012-01-17 13:38:36 +0100
commitfd543de5da7c8924d353bf4d0aff45b5bdc9911f (patch)
treebdd9db662f3b4ae477e5d228faa610e3dc7835b4
parent76c68feb2a12586999515d775c8b62e3b497a8fa (diff)
Remove inline tag from methods that aren't inline
Change-Id: Ia414b7147b2324680d7c4427eb9de18a6ea415ec Sanity-Review: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Denis Dzyubenko <denis.dzyubenko@nokia.com>
-rw-r--r--src/qjsonvalue.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/qjsonvalue.h b/src/qjsonvalue.h
index a1a3cd9..ddc1054 100644
--- a/src/qjsonvalue.h
+++ b/src/qjsonvalue.h
@@ -144,8 +144,8 @@ public:
inline bool toBool() const { return toValue().toBool(); }
inline double toDouble() const { return toValue().toDouble(); }
inline QString toString() const { return toValue().toString(); }
- inline QJsonArray toArray() const;
- inline QJsonObject toObject() const;
+ QJsonArray toArray() const;
+ QJsonObject toObject() const;
inline bool operator==(const QJsonValue &other) const { return toValue() == other; }
inline bool operator!=(const QJsonValue &other) const { return toValue() != other; }