summaryrefslogtreecommitdiffhomepage
path: root/options/tie.hpp
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2017-08-10 16:14:30 +0200
committerStanislaw Halik <sthalik@misaki.pl>2017-08-14 19:19:59 +0200
commit742fdf7d20936cd71a009f96dfb94610b336bc97 (patch)
tree600932d0866bbaf43647ee59f8826b2f35dd6fe1 /options/tie.hpp
parent07f16d4ff648fee65cb3f7aaf313e9616179e9d0 (diff)
use c++14 features
Diffstat (limited to 'options/tie.hpp')
-rw-r--r--options/tie.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/options/tie.hpp b/options/tie.hpp
index e8c1006f..92e98680 100644
--- a/options/tie.hpp
+++ b/options/tie.hpp
@@ -30,7 +30,7 @@
namespace options {
template<typename t>
-typename std::enable_if<std::is_enum<t>::value>::type
+std::enable_if_t<std::is_enum<t>::value>
tie_setting(value<t>& v, QComboBox* cb)
{
cb->setCurrentIndex(cb->findData(int(static_cast<t>(v))));