Changeset 1102 for trunk/lib/main_utility.cc
- Timestamp:
- Jun 15, 2010, 4:27:21 AM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/lib/main_utility.cc
r1086 r1102 36 36 namespace svndigest { 37 37 38 void load_config(const std::string& file )38 void load_config(const std::string& file, bool verbose) 39 39 { 40 40 // Reading configuration file … … 43 43 std::ifstream is(file.c_str()); 44 44 assert(is.good()); 45 if (verbose) 46 std::cout << "Reading configuration file: `" << file << "'\n"; 45 47 try { 46 48 config.load(is);
Note: See TracChangeset
for help on using the changeset viewer.