Changeset 12827


Ignore:
Timestamp:
02/03/12 12:38:26 (13 years ago)
Author:
tbretz
Message:
Changed ifdef to make it compile with boost 1.46
File:
1 edited

Legend:

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

    r12708 r12827  
    14361436
    14371437    //print the path configuration
     1438#if BOOST_VERSION < 104600
    14381439    Message("File path:    " + boost::filesystem::system_complete(boost::filesystem::path(fFilePath)).directory_string());
     1440#else
     1441    Message("File path:    " + boost::filesystem::system_complete(boost::filesystem::path(fFilePath)).parent_path().string());
     1442#endif
    14391443
    14401444    //print active run numbers
Note: See TracChangeset for help on using the changeset viewer.