some more colvars updates to silence compiler warnings

This commit is contained in:
Axel Kohlmeyer
2016-02-28 10:53:40 -05:00
parent ebd41bc07f
commit 28c510d67b
3 changed files with 4 additions and 3 deletions

View File

@ -1102,6 +1102,7 @@ int colvar::calc_cvcs(int first_cvc, size_t num_cvcs)
if (cvm::debug())
cvm::log("Done calculating system force of colvar \""+this->name+"\".\n");
}
return COLVARS_OK;
}
@ -1143,6 +1144,8 @@ int colvar::calc_colvar_properties()
if (cvm::debug())
cvm::log("Done calculating colvar \""+this->name+"\".\n");
return COLVARS_OK;
}

View File

@ -100,8 +100,6 @@ int colvarmodule::read_config_string(std::string const &config_str)
int colvarmodule::parse_config(std::string &conf)
{
int error_code = COLVARS_OK;
// parse global options
if (catch_input_errors(parse_global_params(conf))) {
return get_error();

View File

@ -4,7 +4,7 @@
#define COLVARMODULE_H
#ifndef COLVARS_VERSION
#define COLVARS_VERSION "2016-02-24"
#define COLVARS_VERSION "2016-02-28"
#endif
#ifndef COLVARS_DEBUG