mirror of
https://github.com/boostorg/static_assert.git
synced 2025-06-28 21:41:09 +02:00
Compare commits
21 Commits
svn-branch
...
boost-1.46
Author | SHA1 | Date | |
---|---|---|---|
456723606e | |||
06dedcd232 | |||
6f1d2476fa | |||
e27a27c9f3 | |||
12f96b5653 | |||
23d7abde22 | |||
9e4d6dfeff | |||
2637358ba9 | |||
9e411076c6 | |||
3488b2bdf2 | |||
28e09a3cca | |||
481c2efbac | |||
3b702727b9 | |||
f298ed51a9 | |||
851fd2622e | |||
720fb456d5 | |||
2fa11699bf | |||
69dbf6f12d | |||
66dd3d2595 | |||
7a0a3fbf32 | |||
c5de8ff789 |
@ -12,6 +12,7 @@ boostbook standalone
|
|||||||
:
|
:
|
||||||
static_assert
|
static_assert
|
||||||
:
|
:
|
||||||
|
<xsl:param>boost.root=../../../..
|
||||||
<xsl:param>nav.layout=none
|
<xsl:param>nav.layout=none
|
||||||
<xsl:param>navig.graphics=0
|
<xsl:param>navig.graphics=0
|
||||||
# PDF Options:
|
# PDF Options:
|
||||||
@ -36,9 +37,3 @@ boostbook standalone
|
|||||||
<format>pdf:<xsl:param>admon.graphics.path=$(boost-images)/
|
<format>pdf:<xsl:param>admon.graphics.path=$(boost-images)/
|
||||||
<format>pdf:<xsl:param>boost.url.prefix=http://www.boost.org/doc/libs/release/doc/html
|
<format>pdf:<xsl:param>boost.url.prefix=http://www.boost.org/doc/libs/release/doc/html
|
||||||
;
|
;
|
||||||
|
|
||||||
install html : ../../../doc/html/boostbook.css ;
|
|
||||||
install ../ : ../../../boost.png ;
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -16,7 +16,7 @@
|
|||||||
]
|
]
|
||||||
|
|
||||||
This manual is also available in
|
This manual is also available in
|
||||||
[@http://svn.boost.org/svn/boost/sandbox/pdf/static_assert/release/static_assert.pdf
|
[@http://sourceforge.net/projects/boost/files/boost-docs/
|
||||||
printer friendly PDF format].
|
printer friendly PDF format].
|
||||||
|
|
||||||
[section:intro Overview and Tutorial]
|
[section:intro Overview and Tutorial]
|
||||||
|
@ -17,6 +17,12 @@
|
|||||||
#include <boost/config.hpp>
|
#include <boost/config.hpp>
|
||||||
#include <boost/detail/workaround.hpp>
|
#include <boost/detail/workaround.hpp>
|
||||||
|
|
||||||
|
#ifndef BOOST_NO_STATIC_ASSERT
|
||||||
|
# define BOOST_STATIC_ASSERT_MSG( B, Msg ) static_assert(B, Msg)
|
||||||
|
#else
|
||||||
|
# define BOOST_STATIC_ASSERT_MSG( B, Msg ) BOOST_STATIC_ASSERT( B )
|
||||||
|
#endif
|
||||||
|
|
||||||
#ifdef __BORLANDC__
|
#ifdef __BORLANDC__
|
||||||
//
|
//
|
||||||
// workaround for buggy integral-constant expression support:
|
// workaround for buggy integral-constant expression support:
|
||||||
|
Reference in New Issue
Block a user