Skip to content

Commit

Permalink
spacing
Browse files Browse the repository at this point in the history
  • Loading branch information
lalitb committed Aug 31, 2020
1 parent 041191e commit 71eaa99
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions sdk/include/opentelemetry/sdk/http/http_client.h
Original file line number Diff line number Diff line change
Expand Up @@ -42,12 +42,12 @@ class HttpHeaders: http_api::HttpHeaders, std::multimap<std::string, std::string
}

private:

nostd::string_view m_empty{};
};

class SimpleHttpRequest: public http_api::HttpRequest
{

public:

SimpleHttpRequest(nostd::string_view const& id): id_(id), method_("GET")
Expand Down Expand Up @@ -109,6 +109,7 @@ class SimpleHttpRequest: public http_api::HttpRequest

class SimpleHttpResponse: public http_api::HttpResponse
{

public:
SimpleHttpResponse(nostd::string_view const& id):
id_(id),
Expand Down Expand Up @@ -140,8 +141,8 @@ class SimpleHttpResponse: public http_api::HttpResponse
body_[i++] = e;
}
}
private:

private:
nostd::string_view id_;
unsigned statusCode_;
http_api::HttpHeaders* headers_;
Expand Down

0 comments on commit 71eaa99

Please sign in to comment.