diff options
| author | Carl Hetherington <cth@carlh.net> | 2016-01-11 11:01:20 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2016-01-14 23:01:38 +0000 |
| commit | 10f26f1377b843f091467a936ccbe8aebc92f9c0 (patch) | |
| tree | 3121fba841900207653519079a8f34cfece220a7 /src/KM_util.cpp | |
| parent | 82b04f26012d2df2480de833b5ecc4eaef29d428 (diff) | |
Fix constructor initializer order.
Diffstat (limited to 'src/KM_util.cpp')
| -rwxr-xr-x | src/KM_util.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/KM_util.cpp b/src/KM_util.cpp index f738814..e6d04a7 100755 --- a/src/KM_util.cpp +++ b/src/KM_util.cpp @@ -129,7 +129,7 @@ Kumu::Result_t::Get(unsigned int i) } // -Kumu::Result_t::Result_t(int v, const std::string& s, const std::string& l) : value(v), symbol(s), label(l) +Kumu::Result_t::Result_t(int v, const std::string& s, const std::string& l) : value(v), label(l), symbol(s) { assert(!l.empty()); assert(!s.empty()); |
