artf4107: Uniform initialization syntax introduced

Change-Id: I452b4794d757a0817589ec62b75eda7fbdd74904
This commit is contained in:
Tyler Veness
2015-06-24 01:06:29 -07:00
parent b1befed14f
commit 368ad30d37
179 changed files with 379 additions and 831 deletions

View File

@@ -12,9 +12,9 @@
class InternalButton : public Button {
public:
InternalButton();
InternalButton() = default;
InternalButton(bool inverted);
virtual ~InternalButton() {}
virtual ~InternalButton() = default;
void SetInverted(bool inverted);
void SetPressed(bool pressed);
@@ -22,8 +22,8 @@ class InternalButton : public Button {
virtual bool Get();
private:
bool m_pressed;
bool m_inverted;
bool m_pressed = false;
bool m_inverted = false;
};
#endif