Changeset 20019 for trunk/FACT++


Ignore:
Timestamp:
12/28/20 17:26:49 (4 years ago)
Author:
tbretz
Message:
In favor of boost 1.70, replaced get_io_context
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/FACT++/src/ConnectionUSB.cc

    r19017 r20019  
    127127void ConnectionUSB::PostClose(int64_t delay)
    128128{
     129#if BOOST_VERSION < 107000
    129130    get_io_service().post(boost::bind(&ConnectionUSB::CloseImp, this, delay));
     131#else
     132    ba::post(boost::bind(&ConnectionUSB::CloseImp, this, delay));
     133#endif
    130134}
    131135
Note: See TracChangeset for help on using the changeset viewer.