comparison liboctave/util/cmd-hist.cc @ 21736:0504351a45e6

use namespace for file_stat classes * file-stat.h, file-stat.cc: Put base_file_stat, file_stat, and file_fstat in octave::sys namespace. Change all uses.
author John W. Eaton <jwe@octave.org>
date Thu, 19 May 2016 01:22:06 -0400
parents cb0fdd941d84
children 176536b15d68
comparison
equal deleted inserted replaced
21735:60212efcd9cb 21736:0504351a45e6
392 if (f.empty ()) 392 if (f.empty ())
393 f = xfile; 393 f = xfile;
394 394
395 if (! f.empty ()) 395 if (! f.empty ())
396 { 396 {
397 file_stat fs (f); 397 octave::sys::file_stat fs (f);
398 398
399 if (! fs) 399 if (! fs)
400 { 400 {
401 int tem; 401 int tem;
402 402