Changeset 365 in pacpusframework for branches/0.2.x/src/DBITEPlayerLib


Ignore:
Timestamp:
12/15/15 11:43:22 (9 years ago)
Author:
DHERBOMEZ Gérald
Message:

applying patch relative to ticket https://devel.hds.utc.fr/software/pacpus/ticket/1
Pass compilation under Windows 7, Qt5.5, boost 1.59
Pass compilation under Linux, Qt5.2, boost 1.54

Location:
branches/0.2.x/src/DBITEPlayerLib
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/0.2.x/src/DBITEPlayerLib/DbtPlyEngine.cpp

    r288 r365  
    270270void DbtPlyEngine::setState(DbtPlyEngineState * newState)
    271271{
    272     BOOST_ASSERT(newState);
    273     LOG_DEBUG(mCurrentState->toString() << " => " << newState->toString());
     272        BOOST_ASSERT(newState);
     273        LOG_DEBUG(mCurrentState->toString().toStdString() << " => " << newState->toString().toStdString());
    274274    mCurrentState = newState;
    275275
  • branches/0.2.x/src/DBITEPlayerLib/DbtPlyFileManager.cpp

    r288 r365  
    286286    deltaTDbtTab_[(deltaTDbtTabLoop_++)%1000] = deltaT;
    287287    if (deltaT > kMaxPendingTimeFromEngineMicrosecs) {
    288         LOG_WARN(getName() << ": data not replayed: elapsed time since engine notification too big:" << deltaT << "us");
    289         return;
     288                LOG_WARN(getName().toStdString() << ": data not replayed: elapsed time since engine notification too big:" << deltaT << "us");
     289                return;
    290290    }
    291291
Note: See TracChangeset for help on using the changeset viewer.