X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=3rdparty%2Fboost%2Fboost%2Fregex%2Fv4%2Fbasic_regex_creator.hpp;h=623e06f1622c2255ccb40117e25d8cae94303cad;hb=c40d23deacc277e4a862db803c565ff04e6031f1;hp=132ff84f0751bed7cee71e604b6ee8c0e5517734;hpb=ed09ccbc3cb52abd94ddccc8dd62f7edd6904bf9;p=features.git diff --git a/3rdparty/boost/boost/regex/v4/basic_regex_creator.hpp b/3rdparty/boost/boost/regex/v4/basic_regex_creator.hpp index 132ff84f07..623e06f162 100644 --- a/3rdparty/boost/boost/regex/v4/basic_regex_creator.hpp +++ b/3rdparty/boost/boost/regex/v4/basic_regex_creator.hpp @@ -43,8 +43,8 @@ namespace BOOST_REGEX_DETAIL_NS{ template struct digraph : public std::pair { - digraph() : std::pair(0, 0){} - digraph(charT c1) : std::pair(c1, 0){} + digraph() : std::pair(charT(0), charT(0)){} + digraph(charT c1) : std::pair(c1, charT(0)){} digraph(charT c1, charT c2) : std::pair(c1, c2) {} digraph(const digraph& d) : std::pair(d.first, d.second){}