From bdab182bd0fcb352b178db646992ea1ff8a48834 Mon Sep 17 00:00:00 2001 From: Stephen Kelly Date: Wed, 25 Jul 2012 15:46:26 +0200 Subject: Make the operator| for QUrl with QIncompatibleFlag constexpr. Change-Id: I7780af7ef0d5e191e2715c40bf0ffbb6d376f1a2 Reviewed-by: Marc Mutz Reviewed-by: Thiago Macieira --- src/corelib/io/qurl.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/corelib/io/qurl.h') diff --git a/src/corelib/io/qurl.h b/src/corelib/io/qurl.h index 5096d9c1d9..7e694799cc 100644 --- a/src/corelib/io/qurl.h +++ b/src/corelib/io/qurl.h @@ -337,7 +337,7 @@ Q_DECL_CONSTEXPR inline QUrl::FormattingOptions operator|(QUrl::UrlFormattingOpt { return QUrl::FormattingOptions(f1) | f2; } Q_DECL_CONSTEXPR inline QUrl::FormattingOptions operator|(QUrl::UrlFormattingOption f1, QUrl::FormattingOptions f2) { return f2 | f1; } -inline QIncompatibleFlag operator|(QUrl::UrlFormattingOption f1, int f2) +Q_DECL_CONSTEXPR inline QIncompatibleFlag operator|(QUrl::UrlFormattingOption f1, int f2) { return QIncompatibleFlag(int(f1) | f2); } // add operators for OR'ing the two types of flags -- cgit v1.2.3