projects
/
platform
/
upstream
/
llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a84544a
)
Add missing return statements in C++03 std::function
author
Eric Fiselier
<eric@efcs.ca>
Tue, 2 Jun 2015 01:31:33 +0000
(
01:31
+0000)
committer
Eric Fiselier
<eric@efcs.ca>
Tue, 2 Jun 2015 01:31:33 +0000
(
01:31
+0000)
llvm-svn: 238803
libcxx/include/__functional_03
patch
|
blob
|
history
diff --git
a/libcxx/include/__functional_03
b/libcxx/include/__functional_03
index
785a275
..
f048ea3
100644
(file)
--- a/
libcxx/include/__functional_03
+++ b/
libcxx/include/__functional_03
@@
-825,6
+825,7
@@
function<_Rp()>::operator=(nullptr_t)
else if (__f_)
__f_->destroy_deallocate();
__f_ = 0;
+ return *this;
}
template<class _Rp>
@@
-1121,6
+1122,7
@@
function<_Rp(_A0)>::operator=(nullptr_t)
else if (__f_)
__f_->destroy_deallocate();
__f_ = 0;
+ return *this;
}
template<class _Rp, class _A0>
@@
-1417,6
+1419,7
@@
function<_Rp(_A0, _A1)>::operator=(nullptr_t)
else if (__f_)
__f_->destroy_deallocate();
__f_ = 0;
+ return *this;
}
template<class _Rp, class _A0, class _A1>
@@
-1713,6
+1716,7
@@
function<_Rp(_A0, _A1, _A2)>::operator=(nullptr_t)
else if (__f_)
__f_->destroy_deallocate();
__f_ = 0;
+ return *this;
}
template<class _Rp, class _A0, class _A1, class _A2>