* understands that all values
* are allowed.
*/
- static const int min_int_value =
-#ifdef HAVE_STD_NUMERIC_LIMITS
- std::numeric_limits<int>::min();
-#else
- 1;
-#endif
+ static const int min_int_value;
/**
* Maximal integer value. If
* understands that all values
* are allowed.
*/
- static const int max_int_value =
-#ifdef HAVE_STD_NUMERIC_LIMITS
- std::numeric_limits<int>::max();
-#else
- 0;
-#endif
+ static const int max_int_value;
/**
* Constructor. Bounds can be
- const int Integer::min_int_value;
- const int Integer::max_int_value;
+ const int Integer::min_int_value =
+#ifdef HAVE_STD_NUMERIC_LIMITS
+ std::numeric_limits<int>::min();
+#else
+ 1;
+#endif
+
+ const int Integer::max_int_value =
+#ifdef HAVE_STD_NUMERIC_LIMITS
+ std::numeric_limits<int>::max();
+#else
+ 0;
+#endif
Integer::Integer (const int lower_bound,
In the beginning the Universe was created. This has made a lot of
people very angry and has been widely regarded as a bad move.
Douglas Adams