Closed amieleg closed 4 years ago
Angry compiler noises when there's no class in front of a member definition with the same name. Code should not look like this:
class foo { public: class position position; }
but should instead look like this:
class foo { public: [new class name here] position; }
Fixed in #12
Angry compiler noises when there's no class in front of a member definition with the same name. Code should not look like this:
but should instead look like this: