Make everything struct, never use class

This commit is contained in:
Alex Hultman
2019-06-09 08:07:51 +02:00
parent 762b18459e
commit 996703dde6
10 changed files with 16 additions and 16 deletions
+2 -2
View File
@@ -39,7 +39,7 @@ enum ExtensionTokens {
TOK_CLIENT_MAX_WINDOW_BITS = 2348
};
class ExtensionsParser {
struct ExtensionsParser {
private:
int *lastInteger = nullptr;
@@ -102,7 +102,7 @@ public:
};
template <bool isServer>
class ExtensionsNegotiator {
struct ExtensionsNegotiator {
protected:
int options;