-/* Macro that can be used to indicate that a function doesn't throw. */
-#if defined(__cplusplus) && __cplusplus >= 199711L /* C++98 */
-# if __cplusplus >= 201103L /* >= C++11 */
-# define wxNOEXCEPT noexcept
-# else
-# define wxNOEXCEPT throw()
-# endif
-#else
-# define wxNOEXCEPT
-#endif
-