diff options
| author | Maxime Coste <mawww@kakoune.org> | 2017-01-29 23:37:42 +0000 |
|---|---|---|
| committer | Maxime Coste <mawww@kakoune.org> | 2017-01-29 23:37:42 +0000 |
| commit | 1ff60ff592ead617e98578c18bed4dacc99a6ae3 (patch) | |
| tree | 2d9c1324ed7e6eb6ab35051f674c9403d862aca7 /src/client.hh | |
| parent | cb395d39f87900bdef11f377dc5485d0b0d7a254 (diff) | |
Fix some uninitialized values
Diffstat (limited to 'src/client.hh')
| -rw-r--r-- | src/client.hh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client.hh b/src/client.hh index 97d134ed..80a1ef08 100644 --- a/src/client.hh +++ b/src/client.hh @@ -106,7 +106,7 @@ private: DisplayCoord ui_anchor; MenuStyle style; int selected; - } m_menu; + } m_menu{}; struct Info { @@ -115,7 +115,7 @@ private: BufferCoord anchor; DisplayCoord ui_anchor; InfoStyle style; - } m_info; + } m_info{}; Vector<Key, MemoryDomain::Client> m_pending_keys; |
