[NFC][libc++] Remove stray semi-colon after function definition

llvm-svn: 363835
This commit is contained in:
Louis Dionne 2019-06-19 16:33:28 +00:00
parent d72ebeef2c
commit 205ead8c16
1 changed files with 1 additions and 1 deletions

View File

@ -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) {