]> git.proxmox.com Git - ceph.git/blobdiff - ceph/src/boost/boost/wave/grammars/cpp_expression_value.hpp
import quincy beta 17.1.0
[ceph.git] / ceph / src / boost / boost / wave / grammars / cpp_expression_value.hpp
index 26feb67d0300cb4f323c84b81950abfdddd08234..a4b5de8d259d4b76ffb659de488875d9e7e2d778 100644 (file)
@@ -8,8 +8,8 @@
     LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
 =============================================================================*/
 
-#if !defined(CPP_EXPRESSION_VALUE_HPP_452FE66D_8754_4107_AF1E_E42255A0C18A_INCLUDED)
-#define CPP_EXPRESSION_VALUE_HPP_452FE66D_8754_4107_AF1E_E42255A0C18A_INCLUDED
+#if !defined(BOOST_CPP_EXPRESSION_VALUE_HPP_452FE66D_8754_4107_AF1E_E42255A0C18A_INCLUDED)
+#define BOOST_CPP_EXPRESSION_VALUE_HPP_452FE66D_8754_4107_AF1E_E42255A0C18A_INCLUDED
 
 #if defined (BOOST_SPIRIT_DEBUG)
 #include <iostream>
@@ -72,7 +72,7 @@ public:
     value_type get_type() const { return type; }
     value_error is_valid() const { return valid; }
 
-// explicit conversion
+    // explicit conversion
     friend int_literal_type as_int(closure_value const& v)
     {
         switch (v.type) {
@@ -119,7 +119,7 @@ public:
         return v.value.i != 0.0;
     }
 
-// assignment
+    // assignment
     closure_value &operator= (closure_value const &rhs)
     {
         switch (rhs.get_type()) {
@@ -177,7 +177,7 @@ public:
         return *this;
     }
 
-// arithmetics
+    // arithmetics
     closure_value &operator+= (closure_value const &rhs)
     {
         switch (type) {
@@ -431,7 +431,7 @@ public:
             case is_int:
                 if (as_long(rhs) != 0) {
                     if (value.i == -value.i && -1 == rhs.value.i) {
-                    // LONG_MIN / -1 on two's complement
+                        // LONG_MIN / -1 on two's complement
                         valid = error_integer_overflow;
                     }
                     else {
@@ -494,7 +494,7 @@ public:
             case is_int:
                 if (as_long(rhs) != 0) {
                     if (value.i == -value.i && -1 == rhs.value.i) {
-                    // LONG_MIN % -1 on two's complement
+                        // LONG_MIN % -1 on two's complement
                         valid = error_integer_overflow;
                     }
                     else {
@@ -586,7 +586,7 @@ public:
         return closure_value(!as_ulong(rhs), rhs.valid);
     }
 
-// comparison
+    // comparison
     friend closure_value
     operator== (closure_value const &lhs, closure_value const &rhs)
     {
@@ -880,4 +880,4 @@ private:
 #include BOOST_ABI_SUFFIX
 #endif
 
-#endif // !defined(CPP_EXPRESSION_VALUE_HPP_452FE66D_8754_4107_AF1E_E42255A0C18A_INCLUDED)
+#endif // !defined(BOOST_CPP_EXPRESSION_VALUE_HPP_452FE66D_8754_4107_AF1E_E42255A0C18A_INCLUDED)