Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
CMake
CMake
Commits
49ced45d
Commit
49ced45d
authored
May 01, 2004
by
Andy Cedilnik
Browse files
ERR: Remove warning about shadow variables
parent
2eb42a53
Changes
1
Hide whitespace changes
Inline
Side-by-side
Source/cmCTest.cxx
View file @
49ced45d
...
...
@@ -2961,10 +2961,10 @@ int cmCTest::ProcessTests()
{
cmsys
::
Directory
d
;
d
.
Load
(
notes_dir
.
c_str
());
unsigned
long
cc
;
for
(
cc
=
0
;
cc
<
d
.
GetNumberOfFiles
();
cc
++
)
unsigned
long
kk
;
for
(
kk
=
0
;
kk
<
d
.
GetNumberOfFiles
();
kk
++
)
{
const
char
*
file
=
d
.
GetFile
(
cc
);
const
char
*
file
=
d
.
GetFile
(
kk
);
std
::
string
fullname
=
notes_dir
+
"/"
+
file
;
if
(
cmSystemTools
::
FileExists
(
fullname
.
c_str
())
&&
!
cmSystemTools
::
FileIsDirectory
(
fullname
.
c_str
())
)
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment