Changeset 1179 for trunk/yat/utility/OptionFile.cc
- Timestamp:
- Feb 27, 2008, 8:31:19 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/yat/utility/OptionFile.cc
r1178 r1179 46 46 void OptionFile::do_validate2() const 47 47 { 48 std::cerr << "OptionFile:: do_validate2 " << std::endl;49 48 if (!present()) 50 49 return; 51 50 FileUtil fu(value().c_str()); 52 std::cerr << "check exist" << std::endl;53 51 if (exist_ && !fu.exists()){ 54 52 std::stringstream ss; … … 56 54 throw cmd_error(ss.str()); 57 55 } 58 std::cerr << "check perm" << std::endl;59 56 if (fu.permissions(bits_)) { 60 57 // Peter, this loop is stupid but I wanna differentiate the error message
Note: See TracChangeset
for help on using the changeset viewer.