diff libinterp/octave-value/ov-base-int.cc @ 21739:c4ab2e54f100

use namespace for oct_mach_info class * mach-info.h, mach-info.cc: Put oct_mach_info in octave namespace and rename to mach_info. Change all uses.
author John W. Eaton <jwe@octave.org>
date Thu, 19 May 2016 01:59:35 -0400
parents 263d18409fdf
children 278fc29b69ca
line wrap: on
line diff
--- a/libinterp/octave-value/ov-base-int.cc	Thu May 19 01:50:04 2016 -0400
+++ b/libinterp/octave-value/ov-base-int.cc	Thu May 19 01:59:35 2016 -0400
@@ -256,7 +256,7 @@
 template <typename T>
 bool
 octave_base_int_matrix<T>::load_binary (std::istream& is, bool swap,
-                                        oct_mach_info::float_format)
+                                        octave::mach_info::float_format)
 {
   int32_t mdims;
   if (! is.read (reinterpret_cast<char *> (&mdims), 4))
@@ -520,7 +520,7 @@
 template <typename T>
 bool
 octave_base_int_scalar<T>::load_binary (std::istream& is, bool swap,
-                                        oct_mach_info::float_format)
+                                        octave::mach_info::float_format)
 {
   T tmp;
   if (! is.read (reinterpret_cast<char *> (&tmp), this->byte_size ()))