changeset 10343:2ef5144ccb0d

Add few OCTINTERP_API tags.
author Michael Goffioul <michael.goffioul@gmail.com>
date Sun, 21 Feb 2010 17:37:06 +0000
parents 7f6b4c6838ea
children 65974373505a
files src/ChangeLog src/ov-bool.h src/unwind-prot.h
diffstat 3 files changed, 7 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/ChangeLog	Sun Feb 21 17:33:58 2010 +0000
+++ b/src/ChangeLog	Sun Feb 21 17:37:06 2010 +0000
@@ -1,5 +1,8 @@
 2010-02-21  Michael Goffioul  <michael.goffioul@gmail.com>
 
+	* ov-bool.h (class octave_bool): Add OCTINTERP_API.
+	* unwind-prot.h (class unwind_protect_safe): Ditto.
+
 	* Makefile.am: Add -bindir flag to liboctinterp_la_LDFLAGS. Remove
 	temporary libtool module file after copying oct file.
 
--- a/src/ov-bool.h	Sun Feb 21 17:33:58 2010 +0000
+++ b/src/ov-bool.h	Sun Feb 21 17:37:06 2010 +0000
@@ -48,6 +48,7 @@
 // Real scalar values.
 
 class
+OCTINTERP_API
 octave_bool : public octave_base_scalar<bool>
 {
 public:
--- a/src/unwind-prot.h	Sun Feb 21 17:33:58 2010 +0000
+++ b/src/unwind-prot.h	Sun Feb 21 17:37:06 2010 +0000
@@ -250,7 +250,9 @@
 // an exception (or interrupt) in the cleanup actions. Not that we can do much about
 // it, but at least we won't crash.
 
-class unwind_protect_safe : public unwind_protect
+class
+OCTINTERP_API
+unwind_protect_safe : public unwind_protect
 {
   static void gripe_exception (void);