diff liboctave/dMatrix.h @ 1296:f93b7fa5e113

[project @ 1995-05-01 18:30:08 by jwe]
author jwe
date Mon, 01 May 1995 18:30:08 +0000
parents 0bf4d2b7def4
children 611d403c7f3d
line wrap: on
line diff
--- a/liboctave/dMatrix.h
+++ b/liboctave/dMatrix.h
@@ -24,6 +24,10 @@
 #if !defined (octave_Matrix_int_h)
 #define octave_Matrix_int_h 1
 
+#if defined (__GNUG__)
+#pragma interface
+#endif
+
 // For FILE...
 #include <stdio.h>
 
@@ -31,8 +35,6 @@
 
 #include "mx-defs.h"
 
-extern "C++" {
-
 class Matrix : public MArray2<double>
 {
 friend class ComplexMatrix;
@@ -238,8 +240,6 @@
   Matrix (double *d, int r, int c) : MArray2<double> (d, r, c) { }
 };
 
-} // extern "C++"
-
 #endif
 
 /*