You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, all code is compiled in a single DLL. This caused some namespacing issues, which could be solves by moving enumeration declarations within a class. An example of this is the go-counting exercise:
With the #199 PR being worked on, each exercise will have its own solution. The namespacing workaround mentioned above is no longer necessary, so we can (and should) move the inner types to the outer namespace:
Currently, all code is compiled in a single DLL. This caused some namespacing issues, which could be solves by moving enumeration declarations within a class. An example of this is the
go-counting
exercise:With the #199 PR being worked on, each exercise will have its own solution. The namespacing workaround mentioned above is no longer necessary, so we can (and should) move the inner types to the outer namespace:
Note: this requires #199 to be merged before we can continue.
The text was updated successfully, but these errors were encountered: