Cleanup: indentation of public/protected/private keywords

This commit is contained in:
Twan van Laarhoven
2020-05-12 21:57:37 +02:00
parent 86aec577a2
commit 0c3712b61a
167 changed files with 751 additions and 752 deletions
+2 -2
View File
@@ -18,7 +18,7 @@
*/
template <typename T>
class Defaultable {
public:
public:
inline Defaultable() : is_default(true) {}
inline Defaultable(const T& v, bool def = false) : value(v), is_default(def) {}
@@ -57,7 +57,7 @@ class Defaultable {
/** used by scriptable to check for changes */
inline bool operator != (const Defaultable& that) const { return value != that.value; }
private:
private:
/// The value
T value;
/// Is this value in the default state?