summaryrefslogtreecommitdiff
path: root/src/KM_util.cpp
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2016-01-11 11:01:20 +0000
committerCarl Hetherington <cth@carlh.net>2019-12-03 16:44:08 +0100
commit418bff64af4f429c019d9f51ae91e85205a6b513 (patch)
treed547e97daabb835de7fd4e68bba769d8eb489fa9 /src/KM_util.cpp
parent62e2948d90dea569aa0ab095f48c4a923454995c (diff)
Fix constructor initializer order.
Diffstat (limited to 'src/KM_util.cpp')
-rwxr-xr-xsrc/KM_util.cpp2
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());