Original Post
So I got this warning : "warning C4482: nonstandard extension used: enum ... " In which was caused by this :
displayMode = DisplayMode::FILLED; Then I found out or just realized that enum don't create its own namespace. Is there a particular reason why enums aren't given its own namespace? -------------------- EDIT: Fixed syntax; --------------------