# HG changeset patch # User jwe # Date 1161825751 0 # Node ID a8aa7a014c224246a3ff76740df5360c7bc9bfe5 # Parent 86ee3cc8d8d2f5f7964f6a5ff673612e27b38a11 [project @ 2006-10-26 01:22:31 by jwe] diff --git a/liboctave/ChangeLog b/liboctave/ChangeLog --- a/liboctave/ChangeLog +++ b/liboctave/ChangeLog @@ -9,6 +9,9 @@ 2006-10-25 Michael Goffioul + * 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. diff --git a/liboctave/glob-match.h b/liboctave/glob-match.h --- a/liboctave/glob-match.h +++ b/liboctave/glob-match.h @@ -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) { }