ornladios / ADIOS

The old ADIOS 1.x code repository. Look for ADIOS2 for new repo
https://csmd.ornl.gov/adios
Other
54 stars 40 forks source link

Fix const correctness and warnings #181

Closed sethrj closed 6 years ago

sethrj commented 6 years ago

A number of public API function signatures use char* for C strings that aren't modified. This change allows std::string.c_str() and string literals to be used in C++ without a const cast for every downstream API call.

I also cleaned up a few unused variable warnings.

pnorbert commented 6 years ago

Thank you for the cleanup.