Changeset 348 for cpp/frams/genetics/fF
- Timestamp:
- 04/09/15 23:51:28 (10 years ago)
- Location:
- cpp/frams/genetics/fF
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
cpp/frams/genetics/fF/conv_fF.cpp
r319 r348 39 39 { 40 40 fF_growth_params gp; 41 if (!gp.load(in )) //invalid input genotype?41 if (!gp.load(in.c_str())) //invalid input genotype? 42 42 return ""; //so we return an invalid f0 genotype 43 43 -
cpp/frams/genetics/fF/fF_genotype.h
r286 r348 43 43 SString tmp; 44 44 param.save2(tmp, NULL/*object containing default values for comparison*/, false/*add CR*/, false/*force field names*/); 45 return string( (const char*)tmp);45 return string(tmp.c_str()); 46 46 } 47 47 };
Note: See TracChangeset
for help on using the changeset viewer.