Changeset 231 in pacpusframework for trunk/src/PacpusLib/ComponentBase.cpp
- Timestamp:
- Nov 27, 2013, 1:30:18 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/PacpusLib/ComponentBase.cpp
r206 r231 28 28 std::basic_ostream<_Elem, _Traits> & operator<<(std::basic_ostream<_Elem, _Traits> & os, const boost::program_options::variables_map & vm) 29 29 { 30 for (po::variables_map::const_iterator i = vm. cbegin(); i != vm.cend(); ++i) {30 for (po::variables_map::const_iterator i = vm.begin(); i != vm.end(); ++i) { 31 31 const po::variable_value & v = i->second; 32 32 if (v.empty()) {
Note:
See TracChangeset
for help on using the changeset viewer.