forked from boostorg/regex
Remove more old compiler workarounds.
This commit is contained in:
@ -42,9 +42,7 @@ struct digraph : public std::pair<charT, charT>
|
||||
digraph(charT c1, charT c2) : std::pair<charT, charT>(c1, c2)
|
||||
{}
|
||||
digraph(const digraph<charT>& d) : std::pair<charT, charT>(d.first, d.second){}
|
||||
#ifndef BOOST_NO_CXX11_DEFAULTED_FUNCTIONS
|
||||
digraph<charT>& operator=(const digraph<charT>&) = default;
|
||||
#endif
|
||||
template <class Seq>
|
||||
digraph(const Seq& s) : std::pair<charT, charT>()
|
||||
{
|
||||
|
Reference in New Issue
Block a user