changeset 13719:8547cde2a568

Export missing symbols. * CRowVector.h (operator*): Add OCTAVE_API decorator. * fCRowVector.h (operator*): Likewise.
author Michael Goffioul <michael.goffioul@gmail.com>
date Wed, 19 Oct 2011 12:00:31 +0100
parents a31c926fb0d5
children 8fb563d14d2f
files liboctave/CRowVector.h liboctave/fCRowVector.h
diffstat 2 files changed, 4 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/liboctave/CRowVector.h	Wed Oct 19 20:30:22 2011 +0100
+++ b/liboctave/CRowVector.h	Wed Oct 19 12:00:31 2011 +0100
@@ -125,9 +125,9 @@
 
 // row vector by column vector -> scalar
 
-Complex operator * (const ComplexRowVector& a, const ColumnVector& b);
+Complex OCTAVE_API operator * (const ComplexRowVector& a, const ColumnVector& b);
 
-Complex operator * (const ComplexRowVector& a, const ComplexColumnVector& b);
+Complex OCTAVE_API operator * (const ComplexRowVector& a, const ComplexColumnVector& b);
 
 // other operations
 
--- a/liboctave/fCRowVector.h	Wed Oct 19 20:30:22 2011 +0100
+++ b/liboctave/fCRowVector.h	Wed Oct 19 12:00:31 2011 +0100
@@ -129,9 +129,9 @@
 
 // row vector by column vector -> scalar
 
-FloatComplex operator * (const FloatComplexRowVector& a, const ColumnVector& b);
+FloatComplex OCTAVE_API operator * (const FloatComplexRowVector& a, const ColumnVector& b);
 
-FloatComplex operator * (const FloatComplexRowVector& a, const FloatComplexColumnVector& b);
+FloatComplex OCTAVE_API operator * (const FloatComplexRowVector& a, const FloatComplexColumnVector& b);
 
 // other operations