From d10c2a0709837b97e969a172b8ae00c14bcdbd81 Mon Sep 17 00:00:00 2001 From: Mathew Sutcliffe Date: Tue, 6 Jan 2015 21:43:22 +0000 Subject: [PATCH] Changed file encoding to UTF-8. --- src/blackmisc/variant.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/blackmisc/variant.h b/src/blackmisc/variant.h index b51d6b14b..f7d8c2a5d 100644 --- a/src/blackmisc/variant.h +++ b/src/blackmisc/variant.h @@ -122,7 +122,7 @@ namespace BlackMisc //! Returns the value converted to the type T, or a default if it can not be converted. //! \details Parameter is passed by value to avoid odr-using the argument in case it is - //! an inline-initialized static const integral data member without a definition (§9.4.2/3). + //! an inline-initialized static const integral data member without a definition (§9.4.2/3). template T valueOrDefault(T def) const { return canConvert() ? value() : def; } //! Return the internal QVariant.