Define m_secmarker_skipped as an integer type

There's no reason to treat this this as a double, since it
represents a human-readable data value that is only meaningful
as an integer. In doing so we write cleaner audit logs and save
a small amount of space.
This commit is contained in:
Robert Paprocki
2018-04-10 09:01:34 -07:00
committed by Felipe Zimmerle
parent bb2ecdf4db
commit d0a63aac03
2 changed files with 2 additions and 2 deletions

View File

@@ -80,7 +80,7 @@ class Rules : public RulesProperties {
private:
int m_referenceCount;
double m_secmarker_skipped;
uint8_t m_secmarker_skipped;
};
#endif