Open chrisknewman opened 6 months ago
const std::string s = "Exodus output"; const char * title = s.c_str(); ...vs... char _title[TUSAS_MAX_LINE_LENGTH] = "Exodus output";
This is more complicated, we need to ex_open everytime we write, we need the filename passed to functions for this.
This is still causing problems on rocinante
const std::string s = "Exodus output"; const char * title = s.c_str(); ...vs... char _title[TUSAS_MAX_LINE_LENGTH] = "Exodus output";