We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 95208a0 commit 8675d23Copy full SHA for 8675d23
1 file changed
include/libremidi/system_error2.hpp
@@ -63,6 +63,12 @@
63
#define STDX_TRIVIALLY_RELOCATABLE
64
#endif
65
66
+#if defined(__clang__) && defined(__has_warning)
67
+ #pragma clang diagnostic push
68
+ #if __has_warning("-Wdeprecated-declarations")
69
+ #pragma clang diagnostic ignored "-Wdeprecated-declarations"
70
+ #endif
71
+#endif
72
#endif // STDX_COMPILER_HPP
73
74
@@ -3497,5 +3503,6 @@ inline string_ref dynamic_exception_code_error_domain::message(const error& e) c
3497
3503
3498
3504
} // end namespace stdx
3499
3505
3500
-
3501
3506
3507
+#pragma clang diagnostic pop
3508
0 commit comments