Skip to content

Commit

Permalink
fix export statements
Browse files Browse the repository at this point in the history
  • Loading branch information
arvidn committed Sep 11, 2015
1 parent a198519 commit 0a91d85
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/simulator/http_server.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,12 @@ All rights reserved.
namespace sim
{

std::string send_response(int code, char const* status_message
std::string SIMULATOR_DECL send_response(int code, char const* status_message
, int len = 0, char const** extra_header = NULL);

// This is a very simple http server that only supports a single concurrent
// connection
struct http_server
struct SIMULATOR_DECL http_server
{
http_server(asio::io_service& ios, int listen_port);

Expand Down

0 comments on commit 0a91d85

Please sign in to comment.