Changeset 1002 for cpp/frams/model/model.cpp
- Timestamp:
- 07/14/20 00:22:32 (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
cpp/frams/model/model.cpp
r999 r1002 441 441 { 442 442 Geno tmpgen; 443 makeGeno(tmpgen );443 makeGeno(tmpgen, NULL, true, true); 444 444 return tmpgen; 445 445 } 446 446 447 void Model::makeGeno(Geno &g, MultiMap *map, bool handle_defaults )448 { 449 if ((buildstatus != valid) && ( buildstatus != building))447 void Model::makeGeno(Geno &g, MultiMap *map, bool handle_defaults, bool can_be_invalid) 448 { 449 if ((buildstatus != valid) && (!can_be_invalid)) 450 450 { 451 451 g = Geno("", Geno::FORMAT_INVALID, "", "invalid model");
Note: See TracChangeset
for help on using the changeset viewer.