forked from OSchip/llvm-project
[NFC][libc++] Remove stray semi-colon after function definition
llvm-svn: 363835
This commit is contained in:
parent
d72ebeef2c
commit
205ead8c16
|
@ -507,7 +507,7 @@ any::any(_ValueType && __v) : __h(nullptr)
|
|||
template <class _ValueType, class ..._Args, class _Tp, class>
|
||||
any::any(in_place_type_t<_ValueType>, _Args&&... __args) {
|
||||
__any_imp::_Handler<_Tp>::__create(*this, _VSTD::forward<_Args>(__args)...);
|
||||
};
|
||||
}
|
||||
|
||||
template <class _ValueType, class _Up, class ..._Args, class _Tp, class>
|
||||
any::any(in_place_type_t<_ValueType>, initializer_list<_Up> __il, _Args&&... __args) {
|
||||
|
|
Loading…
Reference in New Issue