forked from pool/octave-forge-database
Add database-drop-error_state.patch -- Drop error_state usage for octave >= 8 compatibility (https://savannah.gnu.org/bugs/index.php?61567). OBS-URL: https://build.opensuse.org/request/show/1080261 OBS-URL: https://build.opensuse.org/package/show/science/octave-forge-database?expand=0&rev=20
23 lines
672 B
Diff
23 lines
672 B
Diff
# HG changeset patch
|
|
# User Markus Mützel <markus.muetzel@gmx.de>
|
|
# Date 1637944272 -3600
|
|
# Fri Nov 26 17:31:12 2021 +0100
|
|
# Node ID cf50442de36069a599dfdd96505aff08eb23baf6
|
|
# Parent 8ce48d0bb822adcbf40aa5ff6b759c3a898a7934
|
|
Fix compilation with Octave 8 (bug #61567).
|
|
|
|
* src/error-helpers.h: Use wrapper function.
|
|
|
|
diff -r 8ce48d0bb822 -r cf50442de360 src/error-helpers.h
|
|
--- a/src/error-helpers.h Thu Mar 25 10:59:09 2021 +0100
|
|
+++ b/src/error-helpers.h Fri Nov 26 17:31:12 2021 +0100
|
|
@@ -64,7 +64,7 @@
|
|
} \
|
|
catch (OCTAVE__EXECUTION_EXCEPTION& e) \
|
|
{ \
|
|
- verror (e, __VA_ARGS__); \
|
|
+ c_verror (e, __VA_ARGS__); \
|
|
}
|
|
#endif
|
|
|