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
85896b34
Commit
85896b34
authored
Sep 26, 2002
by
Ken Martin
Browse files
minor memory fix
parent
1bd67666
Changes
1
Hide whitespace changes
Inline
Side-by-side
Source/cmMakefile.cxx
View file @
85896b34
...
...
@@ -96,12 +96,12 @@ cmMakefile::~cmMakefile()
}
std
::
list
<
cmFunctionBlocker
*>::
iterator
pos
;
for
(
pos
=
m_FunctionBlockers
.
begin
();
pos
!=
m_FunctionBlockers
.
end
();
pos
=
m_FunctionBlockers
.
begin
()
)
pos
!=
m_FunctionBlockers
.
end
();
++
pos
)
{
cmFunctionBlocker
*
b
=
*
pos
;
m_FunctionBlockers
.
remove
(
*
pos
);
delete
b
;
}
m_FunctionBlockers
.
clear
();
}
void
cmMakefile
::
PrintStringVector
(
const
char
*
s
,
const
std
::
vector
<
std
::
string
>&
v
)
const
...
...
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