Cleanup: indentation of public/protected/private keywords

This commit is contained in:
Twan van Laarhoven
2020-05-12 21:57:37 +02:00
parent 86aec577a2
commit 0c3712b61a
167 changed files with 751 additions and 752 deletions
+2 -2
View File
@@ -20,7 +20,7 @@
/// A version number
struct Version {
public:
public:
Version() : version(0) {}
Version(UInt version) : version(version) {}
@@ -39,7 +39,7 @@ struct Version {
/// Convert a string to a version number
static Version fromString(const String& version);
private:
private:
UInt version; ///< Version number encoded as aabbcc, where a=major, b=minor, c=revision
};