2
0
mirror of https://github.com/boostorg/odeint.git synced 2026-01-27 07:02:11 +00:00

adams bashforth fix

This commit is contained in:
Mario Mulansky
2011-07-11 19:56:49 +02:00
parent 8aefeb8802
commit f41c7891f3

View File

@@ -76,7 +76,7 @@ public :
adams_bashforth( ) { }
adams_bashforth( const adams_bashforth &stepper )
: m_resizer( stepper.m_resizer ) , m_step_storage( stepper.m_step_storage ) , m_algebra( stepper.m_algebra )
: m_step_storage( stepper.m_step_storage ) , m_resizer( stepper.m_resizer ) , m_algebra( stepper.m_algebra )
{ }
adams_bashforth& operator=( const adams_bashforth &stepper )