Commit e3f35378 authored by peastman's avatar peastman
Browse files

Fixed incorrect method signature

parent 0620a02f
......@@ -123,7 +123,7 @@ public:
* Set the maximum step size the integrator will ever use, in ps. If this
* is 0 (the default), no limit will be applied to step sizes.
*/
double setMaximumStepSize(double size) {
void setMaximumStepSize(double size) {
maxStepSize = size;
}
/**
......
......@@ -93,7 +93,7 @@ public:
* Set the maximum step size the integrator will ever use, in ps. If this
* is 0 (the default), no limit will be applied to step sizes.
*/
double setMaximumStepSize(double size) {
void setMaximumStepSize(double size) {
maxStepSize = size;
}
/**
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment