diff src/ov-bool.cc @ 5279:bd32f770c09a

[project @ 2005-04-12 21:55:31 by jwe]
author jwe
date Tue, 12 Apr 2005 21:55:31 +0000
parents e35b034d3523
children 4c8a2e4e0717
line wrap: on
line diff
--- a/src/ov-bool.cc
+++ b/src/ov-bool.cc
@@ -103,13 +103,13 @@
 }
 
 octave_value
-octave_bool::convert_to_str_internal (bool, bool) const
+octave_bool::convert_to_str_internal (bool, bool, char type) const
 {
   char s[2];
   s[0] = static_cast<char> (scalar);
   s[1] = '\0';
 
-  return octave_value (s);
+  return octave_value (s, type);
 }
 
 bool