Selene
Selene copied to clipboard
MSVC 2013 doesn't support noexcept sadly
On include/selene/Selector.h a simple change of Selector destructor from :
~Selector() noexcept(false) {
To :
#if def _MSC_VER && _MSC_VER <= 1800 // VStudio 2013 fix
~Selector() {
#else
~Selector() noexcept(false) {
#endif
Or redefine noexcept(X) to empty if _MSC_VER && _MSC_VER <= 1800
Should fix it.
This comes from here : https://github.com/Zardoz89/Selene/pull/1
Better to define a macro for noexcept itself rather than condition every use of it
This issue was moved to DontBelieveMe/Selene#5