Use protected name for the prototype arguments.

llvm-svn: 294585
This commit is contained in:
Joerg Sonnenberger 2017-02-09 14:12:29 +00:00
parent 7232af352f
commit 9e8a082db4
2 changed files with 2 additions and 2 deletions

View File

@ -184,7 +184,7 @@ _LIBCPP_THREAD_ABI_VISIBILITY
void __libcpp_thread_yield();
_LIBCPP_THREAD_ABI_VISIBILITY
void __libcpp_thread_sleep_for(const chrono::nanoseconds& ns);
void __libcpp_thread_sleep_for(const chrono::nanoseconds& __ns);
// Thread local storage
_LIBCPP_THREAD_ABI_VISIBILITY

View File

@ -424,7 +424,7 @@ void swap(thread& __x, thread& __y) _NOEXCEPT {__x.swap(__y);}
namespace this_thread
{
_LIBCPP_FUNC_VIS void sleep_for(const chrono::nanoseconds& ns);
_LIBCPP_FUNC_VIS void sleep_for(const chrono::nanoseconds& __ns);
template <class _Rep, class _Period>
void