mirror of
https://github.com/boostorg/regex.git
synced 2025-07-17 22:32:09 +02:00
Added fix for SGI64 (std::messages::open appears to require a non-const reference on that platform :-( )
[SVN r19305]
This commit is contained in:
@ -186,14 +186,14 @@ struct message_data<char>
|
|||||||
std::istream is;
|
std::istream is;
|
||||||
std::string error_strings[boost::REG_E_UNKNOWN+1];
|
std::string error_strings[boost::REG_E_UNKNOWN+1];
|
||||||
|
|
||||||
message_data(const std::locale& l, const std::string& regex_message_catalogue);
|
message_data(const std::locale& l, std::string regex_message_catalogue);
|
||||||
private:
|
private:
|
||||||
message_data(const message_data&);
|
message_data(const message_data&);
|
||||||
message_data& operator=(const message_data&);
|
message_data& operator=(const message_data&);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
message_data<char>::message_data(const std::locale& l, const std::string& regex_message_catalogue)
|
message_data<char>::message_data(const std::locale& l, std::string regex_message_catalogue)
|
||||||
: is(&sbuf)
|
: is(&sbuf)
|
||||||
{
|
{
|
||||||
is.imbue(l);
|
is.imbue(l);
|
||||||
|
Reference in New Issue
Block a user