]> git.lyx.org Git - features.git/blob - boost/boost/limits.hpp
Fixed one more "missing feature" for InsetText/Tabular.
[features.git] / boost / boost / limits.hpp
1
2 //  (C) Copyright Boost.org 1999. Permission to copy, use, modify, sell and
3 //  distribute this software is granted provided this copyright notice appears
4 //  in all copies. This software is provided "as is" without express or implied
5 //  warranty, and with no claim as to its suitability for any purpose.
6 //
7 // use this header as a workaround for missing <limits>
8
9 #ifndef BOOST_LIMITS
10 #define BOOST_LIMITS
11
12 #include <boost/config.hpp>
13
14 // for now just deactivate the following as otherwise we cannot compile
15 // using LString.h and our own string implementation (Jug)
16 #define BOOST_NO_LIMITS 1
17
18 #ifdef BOOST_NO_LIMITS
19 #include <boost/detail/limits.hpp>
20 #else
21 #include <limits>
22 #endif
23
24 #endif