From 7528986e4449febead9b18b6118f0b096f7cf800 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Blot?= Date: Sat, 19 Aug 2017 14:25:35 +0200 Subject: Code modernization: src/p*, src/q*, src/r*, src/s* (partial) (#6282) * Code modernization: src/p*, src/q*, src/r*, src/s* (partial) * empty function * default constructor/destructor * for range-based loops * use emplace_back instead of push_back * C++ STL header style * Spelling: vertice -> vertex --- src/quicktune.h | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) (limited to 'src/quicktune.h') diff --git a/src/quicktune.h b/src/quicktune.h index 1659e09f1..1943d19c2 100644 --- a/src/quicktune.h +++ b/src/quicktune.h @@ -58,7 +58,7 @@ enum QuicktuneValueType{ }; struct QuicktuneValue { - QuicktuneValueType type; + QuicktuneValueType type = QVT_NONE; union{ struct{ float current; @@ -66,12 +66,10 @@ struct QuicktuneValue float max; } value_QVT_FLOAT; }; - bool modified; + bool modified = false; + + QuicktuneValue() = default; - QuicktuneValue(): - type(QVT_NONE), - modified(false) - {} std::string getString(); void relativeAdd(float amount); }; -- cgit v1.2.3