blob: ae49c9348c7f061610487a77bc42808cd1492c73 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#ifndef FAST_LEXICAL_CAST_HPP
#define FAST_LEXICAL_CAST_HPP
#define BOOST_LEXICAL_CAST_ASSUME_C_LOCALE
// This should make casting to/from string reasonably fast (see http://accu.org/index.php/journals/1375)
#include <boost/lexical_cast.hpp>
using boost::lexical_cast;
#endif
|