Changeset 16469 for trunk/FACT++


Ignore:
Timestamp:
05/30/13 10:14:11 (11 years ago)
Author:
tbretz
Message:
Made compile also with the root version on gate.
Location:
trunk/FACT++/src
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/FACT++/src/EventBuilderWrapper.h

    r16381 r16469  
    832832        const lock_guard<mutex> lock(mtx_newrun);
    833833
    834         map<uint32_t,FAD::RunDescription>::const_iterator it = fExpectedRuns.begin();
     834        map<uint32_t,FAD::RunDescription>::iterator it = fExpectedRuns.begin();
    835835        while (it!=fExpectedRuns.end())
    836836        {
  • trunk/FACT++/src/Readline.cc

    r15457 r16469  
    12781278    stifle_history(0);
    12791279    unstifle_history();
    1280 #if BOOST_VERSION < 104600
    1281     read_history(his.c_str());
    1282 #else
    12831280    read_history(his.string().c_str());
    1284 #endif
    12851281}
    12861282
     
    12981294    his /= fname;
    12991295
    1300 #if BOOST_VERSION < 104600
    1301     write_history(his.c_str());
    1302     history_truncate_file(his.c_str(), 1000);
    1303 #else
    13041296    write_history(his.string().c_str());
    13051297    history_truncate_file(his.string().c_str(), 1000);
    1306 #endif
    13071298
    13081299    stifle_history(0);
  • trunk/FACT++/src/temperature.cc

    r15335 r16469  
     1#if BOOST_VERSION < 104600
     2#include <assert.h>
     3#endif
     4
    15#include <boost/bind.hpp>
    26#include <boost/array.hpp>
Note: See TracChangeset for help on using the changeset viewer.