mirror of
https://github.com/boostorg/regex.git
synced 2025-07-14 12:56:36 +02:00
FIXED: Signed/unsigned conversions in regex_compile.hpp and regex_format.hpp
ADDED: Forwarder functions to match_results. FIXED: More errors from Como in strict mode. [SVN r8826]
This commit is contained in:
@ -44,7 +44,7 @@ int process_ftp(const char* response, std::string* msg)
|
||||
// what[3] contains the text message.
|
||||
if(msg)
|
||||
msg->assign(what[3].first, what[3].second);
|
||||
return std::atoi(what[1].first);
|
||||
return atoi(what[1].first);
|
||||
}
|
||||
// failure did not match
|
||||
if(msg)
|
||||
@ -97,3 +97,4 @@ int main()
|
||||
|
||||
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user