diff options
author | Friedemann Kleint <Friedemann.Kleint@nokia.com> | 2009-11-05 16:14:34 (GMT) |
---|---|---|
committer | Friedemann Kleint <Friedemann.Kleint@nokia.com> | 2009-11-05 16:14:34 (GMT) |
commit | 7598ff4a1e0997ffc99995dc652ef2380e7a2b05 (patch) | |
tree | 0c0a9d7ef77e1001f8856bfb0bd83d6b9a52097e | |
parent | 6d2d9bbff063f082c6010c49523f56dda74fe94e (diff) | |
download | Qt-7598ff4a1e0997ffc99995dc652ef2380e7a2b05.zip Qt-7598ff4a1e0997ffc99995dc652ef2380e7a2b05.tar.gz Qt-7598ff4a1e0997ffc99995dc652ef2380e7a2b05.tar.bz2 |
Fix MSVC compiler warning.
Forward declare struct QAbstractConcatenable correctly.
Reviewed-by: hjk <qtc-committer@nokia.com>
-rw-r--r-- | src/corelib/tools/qstring.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/corelib/tools/qstring.h b/src/corelib/tools/qstring.h index be95211..74f93a4 100644 --- a/src/corelib/tools/qstring.h +++ b/src/corelib/tools/qstring.h @@ -631,7 +631,7 @@ private: friend class QCharRef; friend class QTextCodec; friend class QStringRef; - friend class QAbstractConcatenable; + friend struct QAbstractConcatenable; friend inline bool qStringComparisonHelper(const QString &s1, const char *s2); friend inline bool qStringComparisonHelper(const QStringRef &s1, const char *s2); public: |