]> git.lyx.org Git - lyx.git/blob - boost/boost/limits.hpp
leave formula when pressing end at the end of a formula (and similarly
[lyx.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 #ifdef BOOST_NO_LIMITS
15 #include <boost/detail/limits.hpp>
16 #else
17 #include <limits>
18 #endif
19
20 #endif