changeset 262:a9946b5ca0cb

Flags: forgot bool
author David Demelier <markand@malikania.fr>
date Mon, 13 Oct 2014 14:32:32 +0200
parents 0c7bc55e0d36
children fb91d4dc046b
files C++/Flags.h
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/C++/Flags.h	Thu Oct 09 13:28:24 2014 +0200
+++ b/C++/Flags.h	Mon Oct 13 14:32:32 2014 +0200
@@ -264,7 +264,7 @@
 	 *
 	 * @return true if value == 0
 	 */
-	constexpr operator!() const noexcept
+	constexpr bool operator!() const noexcept
 	{
 		return m_value == 0;
 	}