Changeset 16469 for trunk/FACT++
- Timestamp:
- 05/30/13 10:14:11 (11 years ago)
- Location:
- trunk/FACT++/src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/FACT++/src/EventBuilderWrapper.h
r16381 r16469 832 832 const lock_guard<mutex> lock(mtx_newrun); 833 833 834 map<uint32_t,FAD::RunDescription>:: const_iterator it = fExpectedRuns.begin();834 map<uint32_t,FAD::RunDescription>::iterator it = fExpectedRuns.begin(); 835 835 while (it!=fExpectedRuns.end()) 836 836 { -
trunk/FACT++/src/Readline.cc
r15457 r16469 1278 1278 stifle_history(0); 1279 1279 unstifle_history(); 1280 #if BOOST_VERSION < 1046001281 read_history(his.c_str());1282 #else1283 1280 read_history(his.string().c_str()); 1284 #endif1285 1281 } 1286 1282 … … 1298 1294 his /= fname; 1299 1295 1300 #if BOOST_VERSION < 1046001301 write_history(his.c_str());1302 history_truncate_file(his.c_str(), 1000);1303 #else1304 1296 write_history(his.string().c_str()); 1305 1297 history_truncate_file(his.string().c_str(), 1000); 1306 #endif1307 1298 1308 1299 stifle_history(0); -
trunk/FACT++/src/temperature.cc
r15335 r16469 1 #if BOOST_VERSION < 104600 2 #include <assert.h> 3 #endif 4 1 5 #include <boost/bind.hpp> 2 6 #include <boost/array.hpp>
Note:
See TracChangeset
for help on using the changeset viewer.