changeset 22114:c3b5f26721e1

* syscalls.cc (mk_stat_map): Use namespace qualifier for static file_stat functions.
author John W. Eaton <jwe@octave.org>
date Fri, 15 Jul 2016 10:09:31 -0400
parents b6f482e29afd
children b017351e92e1
files libinterp/corefcn/syscalls.cc
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/libinterp/corefcn/syscalls.cc	Fri Jul 15 11:46:16 2016 +0200
+++ b/libinterp/corefcn/syscalls.cc	Fri Jul 15 10:09:31 2016 -0400
@@ -59,9 +59,9 @@
 static octave_scalar_map
 mk_stat_map (const octave::sys::base_file_stat& fs)
 {
-  static bool have_rdev = file_stat::have_struct_stat_st_rdev ();
-  static bool have_blksize = file_stat::have_struct_stat_st_blksize ();
-  static bool have_blocks = file_stat::have_struct_stat_st_blocks ();
+  static bool have_rdev = octave::sys::base_file_stat::have_struct_stat_st_rdev ();
+  static bool have_blksize = octave::sys::base_file_stat::have_struct_stat_st_blksize ();
+  static bool have_blocks = octave::sys::base_file_stat::have_struct_stat_st_blocks ();
 
   static double nan = octave::numeric_limits<double>::NaN ();