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
3e03bed0
Commit
3e03bed0
authored
Sep 10, 2004
by
Bill Hoffman
Browse files
ENH: fix warning correctly
parent
cd8dc094
Changes
2
Hide whitespace changes
Inline
Side-by-side
Source/cmCTest.cxx
View file @
3e03bed0
...
...
@@ -1568,11 +1568,10 @@ int cmCTest::Run(std::vector<std::string>const& args, std::string* output)
if
(
cmakeAndTest
)
{
cmSystemTools
::
ResetErrorOccuredFlag
();
cmListFileCache
*
lfc
=
cmListFileCache
::
GetInstance
();
lfc
->
ClearCache
();
cmListFileCache
::
ClearCache
();
int
retv
=
this
->
RunCMakeAndTest
(
output
);
cmSystemTools
::
ResetErrorOccuredFlag
();
lfc
->
ClearCache
();
cmListFileCache
::
ClearCache
();
#ifdef CMAKE_BUILD_WITH_CMAKE
cmDynamicLoader
::
FlushCache
();
#endif
...
...
Source/cmakemain.cxx
View file @
3e03bed0
...
...
@@ -109,8 +109,7 @@ int main(int ac, char** av)
#ifdef CMAKE_BUILD_WITH_CMAKE
cmDynamicLoader
::
FlushCache
();
#endif
cmListFileCache
*
lf
=
cmListFileCache
::
GetInstance
();
lf
->
ClearCache
();
cmListFileCache
::
ClearCache
();
return
ret
;
}
...
...
Write
Preview
Markdown
is supported
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