Browse Source

libethrpc retab

cl-refactor
Marek Kotewicz 10 years ago
parent
commit
a54b6b1ae2
  1. 2
      libethrpc/CorsHttpServer.cpp
  2. 3
      libethrpc/CorsHttpServer.h

2
libethrpc/CorsHttpServer.cpp

@ -35,8 +35,6 @@ bool CorsHttpServer::SendResponse(const std::string &response, void *addInfo)
"\r\n"
"%s",(int)response.length(), response.c_str()) > 0)
return true;
return false;
}
}

3
libethrpc/CorsHttpServer.h

@ -28,8 +28,7 @@ class CorsHttpServer : public HttpServer
{
public:
using HttpServer::HttpServer;
bool virtual SendResponse(const std::string& response,
void* addInfo = NULL);
bool virtual SendResponse(const std::string& response, void* addInfo = NULL);
};
}

Loading…
Cancel
Save