Problem: inconsistent naming style for private data members, conflicts with naming of local variables and member functions

Solution: apply and check _lower_case naming style for private data members
This commit is contained in:
Simon Giesecke
2018-05-27 11:10:39 +02:00
parent 06cfd0d8ad
commit e3c73d9881
143 changed files with 5783 additions and 4051 deletions

View File

@@ -46,7 +46,7 @@ class v1_encoder_t : public encoder_base_t<v1_encoder_t>
void size_ready ();
void message_ready ();
unsigned char tmpbuf[10];
unsigned char _tmpbuf[10];
v1_encoder_t (const v1_encoder_t &);
const v1_encoder_t &operator= (const v1_encoder_t &);