This commit cleans up several whitespaces nits, re-indent the code, remove unnecessary data member initializers, and add missing header guards. Test: ./tests/test.py Change-Id: Ibc355441aaa110280b263c5c3d8fc766941b08af
10 lines
113 B
C++
10 lines
113 B
C++
#ifndef EXAMPLE3_H_
|
|
#define EXAMPLE3_H_
|
|
|
|
class HiddenBase {
|
|
int hide;
|
|
float seek;
|
|
};
|
|
|
|
#endif // EXAMPLE3_H_
|