summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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; }