update boost on linux

This commit is contained in:
Bassem Girgis
2019-08-10 16:06:25 -05:00
parent 76ad52be58
commit 861b918727
5363 changed files with 483306 additions and 116507 deletions

View File

@@ -37,8 +37,8 @@ private:
fn{ fn_ } {
}
void operator()( void* data) {
if ( fn) {
void operator()( void * data) {
if ( BOOST_LIKELY( nullptr != fn) ) {
fn( static_cast< T * >( data) );
}
}
@@ -91,7 +91,7 @@ public:
void reset( T * t) {
T * c = get();
if ( c != t) {
if ( BOOST_LIKELY( c != t) ) {
context::active()->set_fss_data(
this, cleanup_fn_, t, true);
}