summaryrefslogtreecommitdiffstats
path: root/libcxx/include/thread
diff options
context:
space:
mode:
authorEvgeniy Stepanov <eugeni.stepanov@gmail.com>2015-11-07 01:22:13 +0000
committerEvgeniy Stepanov <eugeni.stepanov@gmail.com>2015-11-07 01:22:13 +0000
commit906c872db9344ce483282938f83ee5d4a262f3e6 (patch)
tree77a018a289c0de31f1252db45806d5eea81b1ebe /libcxx/include/thread
parent37a0fc483bfa77ee7e85c0cfa2c8cd7ee124e5b9 (diff)
downloadbcm5719-llvm-906c872db9344ce483282938f83ee5d4a262f3e6.tar.gz
bcm5719-llvm-906c872db9344ce483282938f83ee5d4a262f3e6.zip
Cleanup: move visibility/linkage attributes to the first declaration.
This change moves visibility attributes from out-of-class method definitions to in-class declaration. This is needed for a switch to attribute((internal_linkage)) (see http://reviews.llvm.org/D13925) which can only appear on the first declaration. This change does not touch istream/ostream/streambuf. They are handled separately in http://reviews.llvm.org/D14409. llvm-svn: 252385
Diffstat (limited to 'libcxx/include/thread')
-rw-r--r--libcxx/include/thread3
1 files changed, 2 insertions, 1 deletions
diff --git a/libcxx/include/thread b/libcxx/include/thread
index 3dde390261c..6857e9edb68 100644
--- a/libcxx/include/thread
+++ b/libcxx/include/thread
@@ -318,6 +318,7 @@ public:
#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
_LIBCPP_INLINE_VISIBILITY
thread(thread&& __t) _NOEXCEPT : __t_(__t.__t_) {__t.__t_ = 0;}
+ _LIBCPP_INLINE_VISIBILITY
thread& operator=(thread&& __t) _NOEXCEPT;
#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
@@ -399,7 +400,7 @@ thread::thread(_Fp __f)
#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
-inline _LIBCPP_INLINE_VISIBILITY
+inline
thread&
thread::operator=(thread&& __t) _NOEXCEPT
{
OpenPOWER on IntegriCloud