Author
anonymous
almost 8 years ago
Language
Compiler
Options
Author
anonymous
almost 8 years ago
$
In file included from prog.cc:1:
In file included from /opt/wandbox/clang-head/include/c++/v1/vector:266:
In file included from /opt/wandbox/clang-head/include/c++/v1/__bit_reference:15:
In file included from /opt/wandbox/clang-head/include/c++/v1/algorithm:640:
/opt/wandbox/clang-head/include/c++/v1/memory:1798:31: error: call to deleted constructor of 'B'
::new((void*)__p) _Up(_VSTD::forward<_Args>(__args)...);
^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/opt/wandbox/clang-head/include/c++/v1/memory:1709:18: note: in instantiation of function template specialization 'std::__1::allocator<B>::construct<B, B>' requested here
{__a.construct(__p, _VSTD::forward<_Args>(__args)...);}
^
/opt/wandbox/clang-head/include/c++/v1/memory:1555:14: note: in instantiation of function template specialization 'std::__1::allocator_traits<std::__1::allocator<B> >::__construct<B, B>' requested here
{__construct(__has_construct<allocator_type, _Tp*, _Args...>(),
^
/opt/wandbox/clang-head/include/c++/v1/memory:1671:17: note: in instantiation of function template specialization 'std::__1::allocator_traits<std::__1::allocator<B> >::construct<B, B>' requested here
construct(__a, _VSTD::__to_raw_pointer(__end2-1), _VSTD::move_if_noexcept(*--__end1));
^
/opt/wandbox/clang-head/include/c++/v1/vector:892:21: note: in instantiation of function template specialization 'std::__1::allocator_traits<std::__1::allocator<B> >::__construct_backward<B *>' requested here
__alloc_traits::__construct_backward(this->__alloc(), this->__begin_, this->__end_, __v.__begin_);
^
/opt/wandbox/clang-head/include/c++/v1/vector:1536:9: note: in instantiation of member function 'std::__1::vector<B, std::__1::allocator<B> >::__swap_out_circular_buffer' requested here
__swap_out_circular_buffer(__v);
^
prog.cc:4:20: note: in instantiation of member function 'std::__1::vector<B, std::__1::allocator<B> >::reserve' requested here
int main() { v.reserve(8); }
^
prog.cc:2:16: note: 'B' has been explicitly marked deleted here
struct B { B(B&&) = delete; };
^
1 error generated.
Exit Code:
1