diff options
author | David Cole <david.cole@kitware.com> | 2011-09-06 17:07:52 (GMT) |
---|---|---|
committer | David Cole <david.cole@kitware.com> | 2011-09-06 17:10:05 (GMT) |
commit | 98cb017a9deca35cd9a67e03b6bd95064b6d2fb7 (patch) | |
tree | 7c72c87ba88adc57c9d3553952f79f7f2c054de0 /Source/kwsys/Glob.hxx.in | |
parent | 5b4528b1f45a2a7d1ef5effe9813b1a2d764ac60 (diff) | |
download | CMake-98cb017a9deca35cd9a67e03b6bd95064b6d2fb7.zip CMake-98cb017a9deca35cd9a67e03b6bd95064b6d2fb7.tar.gz CMake-98cb017a9deca35cd9a67e03b6bd95064b6d2fb7.tar.bz2 |
KWSys: Remove always-true dir_only parameter
Its presence confuses, and, since it is always true, is useless.
Diffstat (limited to 'Source/kwsys/Glob.hxx.in')
-rw-r--r-- | Source/kwsys/Glob.hxx.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/kwsys/Glob.hxx.in b/Source/kwsys/Glob.hxx.in index cb050ee..88c343c 100644 --- a/Source/kwsys/Glob.hxx.in +++ b/Source/kwsys/Glob.hxx.in @@ -83,12 +83,12 @@ public: protected: //! Process directory void ProcessDirectory(kwsys_stl::string::size_type start, - const kwsys_stl::string& dir, bool dir_only); + const kwsys_stl::string& dir); //! Process last directory, but only when recurse flags is on. That is // effectively like saying: /path/to/file/**/file void RecurseDirectory(kwsys_stl::string::size_type start, - const kwsys_stl::string& dir, bool dir_only); + const kwsys_stl::string& dir); //! Add regular expression void AddExpression(const char* expr); |