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
d9f5d3c5
Commit
d9f5d3c5
authored
Sep 16, 2016
by
Daniel Pfeifer
Browse files
Remove redundant get() call on smart pointer
parent
3fda1094
Changes
1
Show whitespace changes
Inline
Side-by-side
Source/cmExportLibraryDependenciesCommand.cxx
View file @
d9f5d3c5
...
...
@@ -64,7 +64,7 @@ void cmExportLibraryDependenciesCommand::ConstFinalPass() const
ap
->
SetCopyIfDifferent
(
true
);
foutPtr
=
ap
;
}
std
::
ostream
&
fout
=
*
foutPtr
.
get
()
;
std
::
ostream
&
fout
=
*
foutPtr
;
if
(
!
fout
)
{
cmSystemTools
::
Error
(
"Error Writing "
,
this
->
Filename
.
c_str
());
...
...
Brad King
@brad.king
mentioned in commit
995d6be1
·
Sep 19, 2016
mentioned in commit
995d6be1
mentioned in commit 995d6be1282cb1f7c92bb136be10163a704e7d10
Toggle commit list
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