diff liboctave/dNDArray.h @ 14951:4c9fd3e31436

Start of jit support for double matricies
author Max Brister <max@2bass.com>
date Thu, 14 Jun 2012 16:38:06 -0500
parents 13cc11418393
children
line wrap: on
line diff
--- a/liboctave/dNDArray.h	Mon Jun 11 20:11:20 2012 -0500
+++ b/liboctave/dNDArray.h	Thu Jun 14 16:38:06 2012 -0500
@@ -64,6 +64,10 @@
 
   NDArray (const charNDArray&);
 
+  // For jit support only
+  NDArray (double *sdata, octave_idx_type slen, octave_idx_type *adims, void *arep)
+    : MArray<double> (sdata, slen, adims, arep) { }
+
   NDArray& operator = (const NDArray& a)
     {
       MArray<double>::operator = (a);