Remove non-c types from CoolPropLib.[cpp/h]

@JonWel - watch out for the use of C++ types in C header
This commit is contained in:
Ian Bell
2016-08-21 12:45:35 -06:00
parent 57584a7254
commit 3e9ca1fbf4
2 changed files with 2 additions and 2 deletions

View File

@@ -781,7 +781,7 @@ EXPORT_CODE void CONVENTION AbstractState_set_binary_interaction_double(const lo
}
}
EXPORT_CODE void CONVENTION AbstractState_set_fluid_parameter_double(const long handle, const size_t i, const char* parameter, const double value , long *errcode, char *message_buffer, const long buffer_length) {
EXPORT_CODE void CONVENTION AbstractState_set_fluid_parameter_double(const long handle, const long i, const char* parameter, const double value , long *errcode, char *message_buffer, const long buffer_length) {
*errcode = 0;
try {
shared_ptr<CoolProp::AbstractState> &AS = handle_manager.get(handle);