mirror of
https://github.com/boostorg/assert.git
synced 2026-01-25 08:32:25 +01:00
70 lines
1.3 KiB
Plaintext
70 lines
1.3 KiB
Plaintext
////
|
|
Copyright 2017 Peter Dimov
|
|
|
|
Distributed under the Boost Software License, Version 1.0.
|
|
|
|
See accompanying file LICENSE_1_0.txt or copy at
|
|
http://www.boost.org/LICENSE_1_0.txt
|
|
////
|
|
|
|
# Boost.Assert
|
|
Peter Dimov
|
|
:toc: left
|
|
:idprefix:
|
|
|
|
The Boost.Assert library provides several configurable diagnostic macros
|
|
similar in behavior and purpose to the standard macro `assert` from `<cassert>`.
|
|
|
|
:leveloffset: +1
|
|
|
|
include::assert.adoc[]
|
|
|
|
include::current_function.adoc[]
|
|
|
|
:leveloffset: -1
|
|
|
|
[appendix]
|
|
## Copyright and License
|
|
|
|
This documentation is
|
|
|
|
* Copyright 2002, 2007, 2014, 2017 Peter Dimov
|
|
* Copyright 2011 Beman Dawes
|
|
* Copyright 2015 Ion Gaztañaga
|
|
* Distributed under the http://www.boost.org/LICENSE_1_0.txt[Boost Software License, Version 1.0].
|
|
|
|
++++
|
|
<style>
|
|
|
|
*:not(pre)>code { background: none; color: #600000; }
|
|
|
|
</style>
|
|
|
|
<script>
|
|
|
|
var header = document.getElementById( 'boost-common-heading-doc' );
|
|
|
|
if( header )
|
|
{
|
|
header.style.position = 'fixed';
|
|
header.style.zIndex = '100';
|
|
|
|
var notice = document.getElementsByClassName( 'boost-common-header-notice' )[ 0 ];
|
|
|
|
if( notice )
|
|
{
|
|
notice.style.position = 'fixed';
|
|
notice.style.zIndex = '101';
|
|
}
|
|
|
|
var toc = document.getElementById( 'toc' );
|
|
|
|
if( toc )
|
|
{
|
|
toc.style.top = '101px';
|
|
}
|
|
}
|
|
|
|
</script>
|
|
++++
|