Changeset 12782 for trunk/FACT++
- Timestamp:
- 01/30/12 16:55:34 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/FACT++/src/ReadlineColor.cc
r12765 r12782 8 8 #include "ReadlineColor.h" 9 9 10 #include <boost/version.hpp> 10 11 #include <boost/filesystem.hpp> 11 12 … … 23 24 bool ReadlineColor::PrintBootMsg(ostream &out, const string &name, bool interactive) 24 25 { 26 #if BOOST_VERSION < 104700 25 27 const string n = boost::filesystem::path(name).stem(); 28 #else 29 const string n = boost::filesystem::path(name).stem().string(); 30 #endif 26 31 27 32 out << kBlue << kBold << kUnderline << "\n Master Control Program (compiled "__DATE__" " __TIME__ << ") " << endl;
Note:
See TracChangeset
for help on using the changeset viewer.