changeset 6095:a8aa7a014c22

[project @ 2006-10-26 01:22:31 by jwe]
author jwe
date Thu, 26 Oct 2006 01:22:31 +0000
parents 86ee3cc8d8d2
children 40212bfaed1d
files liboctave/ChangeLog liboctave/glob-match.h
diffstat 2 files changed, 4 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/liboctave/ChangeLog	Thu Oct 26 01:18:34 2006 +0000
+++ b/liboctave/ChangeLog	Thu Oct 26 01:22:31 2006 +0000
@@ -9,6 +9,9 @@
 
 2006-10-25  Michael Goffioul  <michael.goffioul@swing.be>
 
+	* glob-match.h (glob_match::glob_match (const std::string&,
+	unsigned int)): Delete initializer for first arg.
+
 	* lo-sysdep.cc (opendir, readdir, rewinddir, closedir):
 	New functions.
 
--- a/liboctave/glob-match.h	Thu Oct 26 01:18:34 2006 +0000
+++ b/liboctave/glob-match.h	Thu Oct 26 01:22:31 2006 +0000
@@ -41,7 +41,7 @@
       period = 4     // Leading `.' is matched only explicitly.
    };
 
-  glob_match (const std::string& p = std::string (),
+  glob_match (const std::string& p,
 	      unsigned int f = pathname|noescape|period)
     : pat (p), flags (f) { }