diff options
| author | Carl Hetherington <cth@carlh.net> | 2020-04-06 20:24:24 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2020-07-11 01:28:41 +0200 |
| commit | 502ee050855da2af9e73c6be8aa2f6f2d73c52f9 (patch) | |
| tree | d2da130f742b9cf9e8f9bd129e50bebaa8dff425 /src/KM_util.cpp | |
| parent | 656e22f15d25fbdfd071047c87493a5a148eda6c (diff) | |
Fix initialisation order of constructors.
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 d263d6e..da8d732 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()); |
