mirror of
https://github.com/boostorg/config.git
synced 2026-03-07 14:24:10 +01:00
Compare commits
4 Commits
boost-1.34
...
boost-1.34
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
05b7c1402c | ||
|
|
ec02089d75 | ||
|
|
b457855f90 | ||
|
|
f7964243d6 |
@@ -76,8 +76,8 @@ namespace std
|
||||
static BOOST_LLT denorm_min() throw() { return 0; };
|
||||
|
||||
BOOST_STATIC_CONSTANT(bool, is_iec559 = false);
|
||||
BOOST_STATIC_CONSTANT(bool, is_bounded = false);
|
||||
BOOST_STATIC_CONSTANT(bool, is_modulo = false);
|
||||
BOOST_STATIC_CONSTANT(bool, is_bounded = true);
|
||||
BOOST_STATIC_CONSTANT(bool, is_modulo = true);
|
||||
|
||||
BOOST_STATIC_CONSTANT(bool, traps = false);
|
||||
BOOST_STATIC_CONSTANT(bool, tinyness_before = false);
|
||||
@@ -129,8 +129,8 @@ namespace std
|
||||
static BOOST_ULLT denorm_min() throw() { return 0; };
|
||||
|
||||
BOOST_STATIC_CONSTANT(bool, is_iec559 = false);
|
||||
BOOST_STATIC_CONSTANT(bool, is_bounded = false);
|
||||
BOOST_STATIC_CONSTANT(bool, is_modulo = false);
|
||||
BOOST_STATIC_CONSTANT(bool, is_bounded = true);
|
||||
BOOST_STATIC_CONSTANT(bool, is_modulo = true);
|
||||
|
||||
BOOST_STATIC_CONSTANT(bool, traps = false);
|
||||
BOOST_STATIC_CONSTANT(bool, tinyness_before = false);
|
||||
@@ -141,3 +141,4 @@ namespace std
|
||||
#endif
|
||||
|
||||
#endif
|
||||
|
||||
|
||||
@@ -19,15 +19,17 @@
|
||||
// BOOST_VERSION / 100 % 1000 is the minor version
|
||||
// BOOST_VERSION / 100000 is the major version
|
||||
|
||||
#define BOOST_VERSION 103400
|
||||
#define BOOST_VERSION 103401
|
||||
|
||||
//
|
||||
// BOOST_LIB_VERSION must be defined to be the same as BOOST_VERSION
|
||||
// but as a *string* in the form "x_y" where x is the major version
|
||||
// number and y is the minor version number. This is used by
|
||||
// <config/auto_link.hpp> to select which library version to link to.
|
||||
// number and y is the minor version number, or in the form "x_y_z"
|
||||
// where z is the patch version number when the patch version number
|
||||
// is not zero (z > 0). This is used by <config/auto_link.hpp> to
|
||||
// select which library version to link to.
|
||||
|
||||
#define BOOST_LIB_VERSION "1_34"
|
||||
#define BOOST_LIB_VERSION "1_34_1"
|
||||
|
||||
#endif
|
||||
|
||||
|
||||
Reference in New Issue
Block a user