diff src/ov.cc @ 4353:ea4b8c35ac9d

[project @ 2003-02-21 21:04:41 by jwe]
author jwe
date Fri, 21 Feb 2003 21:04:41 +0000
parents d39de791ef9c
children 6fa0c2306ef6
line wrap: on
line diff
--- a/src/ov.cc	Fri Feb 21 20:01:39 2003 +0000
+++ b/src/ov.cc	Fri Feb 21 21:04:41 2003 +0000
@@ -383,6 +383,22 @@
   rep->count = 1;
 }
 
+#if defined (HAVE_LONG_LONG_INT)
+octave_value::octave_value (long long int i)
+  : rep (new octave_scalar (i))
+{
+  rep->count = 1;
+}
+#endif
+
+#if defined (HAVE_UNSIGNEDLONG_LONG_INT)
+octave_value::octave_value (unsigned long long int i)
+  : rep (new octave_scalar (i))
+{
+  rep->count = 1;
+}
+#endif
+
 octave_value::octave_value (octave_time t)
   : rep (new octave_scalar (t))
 {