From 0a8936b80a46b50505b1fac9673b7fbd54e583d4 Mon Sep 17 00:00:00 2001 From: Douglas Gregor Date: Wed, 1 Jun 2005 19:08:00 +0000 Subject: [PATCH] Give the enum a name [SVN r29349] --- include/boost/logic/tribool.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/logic/tribool.hpp b/include/boost/logic/tribool.hpp index d1dee92..2cc501c 100644 --- a/include/boost/logic/tribool.hpp +++ b/include/boost/logic/tribool.hpp @@ -118,7 +118,7 @@ public: * The actual stored value in this 3-state boolean, which may be false, true, * or indeterminate. */ - enum { false_value, true_value, indeterminate_value } value; + enum value_t { false_value, true_value, indeterminate_value } value; }; // Check if the given tribool has an indeterminate value. Also doubles as a