Skip to content

Commit

Permalink
Fixed constructor private variable ordering
Browse files Browse the repository at this point in the history
  • Loading branch information
jdrugo committed Oct 14, 2014
1 parent 06ccb07 commit 212fa1b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ddm_fpt_lib/ddm_fpt_lib.h
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ class DMConstDriftConstBound : public DMBase {
class DMConstDriftConstABound : public DMBase {
public:
DMConstDriftConstABound(value_t drift, value_t b_lo, value_t b_up, value_t dt)
: drift(drift), b_lo(b_lo), b_up(b_up), dt(dt) {}
: drift(drift), b_up(b_up), b_lo(b_lo), dt(dt) {}

virtual ~DMConstDriftConstABound() {}

Expand Down

0 comments on commit 212fa1b

Please sign in to comment.