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
we avoid using #define for constants, since they are not visible to the debugger. Instead we use static const. The only place where we use #define is if we need it for assembly, or to declare a global array. In that case we will assign the macro to a static const.
Put the License at the beginning of every file, after include guard in headers