X-Git-Url: https://git.teslayout.com/public/public/public/?p=anna.git;a=blobdiff_plain;f=source%2Fhttp%2Fparser%2FWaitMessage.cpp;fp=source%2Fhttp%2Fparser%2FWaitMessage.cpp;h=a5a146758db61b0b6ae7b2d7c710f25f6a75ab40;hp=8482cea10ba4cef1ea128d778f6bb5373a902e3f;hb=5a6cba5fde2b2f538a7515f8293cc0a8d9589dfa;hpb=af9c86ffb0e28d35ad94d99c5f77e41578c972b4 diff --git a/source/http/parser/WaitMessage.cpp b/source/http/parser/WaitMessage.cpp index 8482cea..a5a1467 100644 --- a/source/http/parser/WaitMessage.cpp +++ b/source/http/parser/WaitMessage.cpp @@ -34,7 +34,7 @@ using namespace anna; // (4) Si estamos recibiendo un Response //---------------------------------------------------------------------------------------------------- int http::parser::WaitMessage::processLine(http::Transport& transport, const DataBlock&, const http::Token& line) const -throw(RuntimeException) { +noexcept(false) { if(line.getSize() == 0) // (1) return -1; @@ -61,7 +61,7 @@ throw(RuntimeException) { //---------------------------------------------------------------------------------------------------- /*static*/ bool http::parser::WaitMessage::setupRequest(http::Transport& transport, const http::Tokenizer& tokenizer) -throw() { +{ bool result = true; const Token* token; Tokenizer::const_iterator ii = tokenizer.begin(); @@ -101,7 +101,7 @@ throw() { //---------------------------------------------------------------------------------------------------- /*static*/ void http::parser::WaitMessage::setupResponse(http::Transport& transport, const http::Tokenizer& tokenizer) -throw() { +{ const Token* token; Tokenizer::const_iterator ii = tokenizer.begin();