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
# pragma warning(disable: 4275) // warning C4275: An exported class was derived from a class that wasn't exported. Can be ignored when derived from a STL class.
845
+
# pragma warning(disable: 4275)
846
+
// warning C4275: An exported class was derived from a class that wasn't exported.
847
+
// Can be ignored when derived from a STL class.
846
848
#endif
847
849
/// C++ bindings of builtin Python exceptions
848
850
classPYBIND11_EXPORT_EXCEPTION builtin_exception : public std::runtime_error {
# pragma warning(disable: 4275 4251) // warning C4275: An exported class was derived from a class that wasn't exported. Can be ignored when derived from a STL class.
340
+
# pragma warning(disable: 4275 4251)
341
+
// warning C4275: An exported class was derived from a class that wasn't exported.
342
+
// Can be ignored when derived from a STL class.
341
343
#endif
342
344
/// Fetch and hold an error which was already set in Python. An instance of this is typically
343
345
/// thrown to propagate python-side errors back through C++ which can either be caught manually or
@@ -1745,7 +1747,8 @@ class memoryview : public object {
1745
1747
1746
1748
See also: Python C API documentation for `PyMemoryView_FromBuffer`_.
0 commit comments