Skip to content

Commit

Permalink
ExodusII_IO: Update 'dummy' function definitions.
Browse files Browse the repository at this point in the history
These are used when Exodus is not available.

Refs #1593.
  • Loading branch information
jwpeterson committed Mar 16, 2018
1 parent f2ff48a commit b60f974
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/mesh/exodusII_io.C
Expand Up @@ -120,7 +120,8 @@ void ExodusII_IO::write_timestep_discontinuous (const std::string &fname,
void ExodusII_IO::write_timestep_discontinuous (const std::string & /* fname */,
const EquationSystems & /* es */,
const int /* timestep */,
const Real /* time */)
const Real /* time */,
const std::set<std::string> * /*system_names*/)
{ libmesh_error(); }
#endif

Expand Down Expand Up @@ -1135,7 +1136,8 @@ void ExodusII_IO::write_global_data (const std::vector<Number> &,
void ExodusII_IO::write_timestep (const std::string &,
const EquationSystems &,
const int,
const Real)
const Real,
const std::set<std::string> *)
{
libmesh_error_msg("ERROR, ExodusII API is not defined.");
}
Expand Down

0 comments on commit b60f974

Please sign in to comment.