diff options
author | Andy Cedilnik <andy.cedilnik@kitware.com> | 2003-07-24 15:53:03 (GMT) |
---|---|---|
committer | Andy Cedilnik <andy.cedilnik@kitware.com> | 2003-07-24 15:53:03 (GMT) |
commit | ca4b50a0c2a50416d86aabd6af72c7f64395ce80 (patch) | |
tree | 536846a73e68f2c38cafbdf2d7f9e8bde6d25b22 /Source | |
parent | fae07565ca62e54883c7135b57e3f2f8be6ecd06 (diff) | |
download | CMake-ca4b50a0c2a50416d86aabd6af72c7f64395ce80.zip CMake-ca4b50a0c2a50416d86aabd6af72c7f64395ce80.tar.gz CMake-ca4b50a0c2a50416d86aabd6af72c7f64395ce80.tar.bz2 |
ENH: Remove warning
Diffstat (limited to 'Source')
-rw-r--r-- | Source/cmGlob.cxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Source/cmGlob.cxx b/Source/cmGlob.cxx index 0a7d866..859af15 100644 --- a/Source/cmGlob.cxx +++ b/Source/cmGlob.cxx @@ -267,9 +267,8 @@ bool cmGlob::FindFiles(const std::string& inexpr) expr += "/" + inexpr; } - int skip = 0; - #if defined( CM_GLOB_SUPPORT_NETWORK_PATHS ) + int skip = 0; // Handle network paths if ( expr[0] == '/' && expr[1] == '/' ) { |