Changeset 12315
- Timestamp:
- 10/28/11 19:58:05 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/FACT++/src/Configuration.h
r12041 r12315 178 178 bool HasDef(const std::string &var, const T &val) 179 179 { 180 return Has(var, val) ? true : Has(var+"default"); 180 // Make sure the .default option is touched 181 const bool rc = Has(var+"default"); 182 183 return Has(var, val) ? true : rc; 181 184 } 182 185 /*
Note:
See TracChangeset
for help on using the changeset viewer.