stk_module icon indicating copy to clipboard operation
stk_module copied to clipboard

Turn off 'register' deprecated warnings for C++11

Open adamski opened this issue 10 years ago • 0 comments

This worked for me: In stk.h

#if __cplusplus > 199711L
#define register      // Deprecated in C++11.
#endif  // #if __cplusplus > 199711L

adamski avatar Aug 08 '15 22:08 adamski