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
6167fa8a
Commit
6167fa8a
authored
Jul 08, 2003
by
Brad King
Browse files
ERR: Added missing std::.
parent
ed273acf
Changes
1
Hide whitespace changes
Inline
Side-by-side
Source/cmDocumentation.cxx
View file @
6167fa8a
...
...
@@ -193,9 +193,9 @@ bool cmDocumentation::PrintRequestedDocumentation(std::ostream& os)
if
(
i
->
second
.
length
()
>
0
)
{
#ifdef _WIN32
fout
=
new
ofstream
(
i
->
second
.
c_str
(),
ios
::
out
|
ios
::
binary
);
fout
=
new
std
::
ofstream
(
i
->
second
.
c_str
(),
std
::
ios
::
out
|
std
::
ios
::
binary
);
#else
fout
=
new
ofstream
(
i
->
second
.
c_str
(),
ios
::
out
);
fout
=
new
std
::
ofstream
(
i
->
second
.
c_str
(),
std
::
ios
::
out
);
#endif
if
(
fout
)
{
...
...
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