1
0
Fork 0

Fix spacing and effc++ warnings

Apply code review recommendations
This commit is contained in:
krcroft 2020-01-23 18:23:50 -08:00 committed by Patryk Obara
parent c730e5d70a
commit 9603c961c0
3 changed files with 94 additions and 64 deletions

View file

@ -54,7 +54,12 @@ protected:
bool installed;
Bitu m_port, m_mask,m_range;
public:
IO_Base():installed(false){};
IO_Base()
: installed(false),
m_port(0),
m_mask(0),
m_range(0)
{}
};
class IO_ReadHandleObject: private IO_Base{
public: