forked from qt-creator/qt-creator
		
	compile fix with namespaces
Change-Id: I1b888ff8bd5c30a13dc8c00824d4cae6990a4b23 Reviewed-by: hjk <qthjk@ovi.com>
This commit is contained in:
		| @@ -88,11 +88,10 @@ public: | ||||
|     void fromMap(const QString &prefix, const QVariantMap &map); | ||||
|  | ||||
|     bool equals(const CppCodeStyleSettings &rhs) const; | ||||
|     bool operator==(const CppCodeStyleSettings &s) const { return equals(s); } | ||||
|     bool operator!=(const CppCodeStyleSettings &s) const { return !equals(s); } | ||||
| }; | ||||
|  | ||||
| inline bool operator==(const CppCodeStyleSettings &s1, const CppCodeStyleSettings &s2) { return s1.equals(s2); } | ||||
| inline bool operator!=(const CppCodeStyleSettings &s1, const CppCodeStyleSettings &s2) { return !s1.equals(s2); } | ||||
|  | ||||
| } // namespace CppTools | ||||
|  | ||||
| Q_DECLARE_METATYPE(CppTools::CppCodeStyleSettings) | ||||
|   | ||||
		Reference in New Issue
	
	Block a user