Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix template whitespace syntax #715

Merged
merged 1 commit into from
Aug 3, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Release/include/cpprest/details/web_utilities.h
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ class zero_memory_deleter
public:
_ASYNCRTIMP void operator()(::utility::string_t *data) const;
};
typedef std::unique_ptr<::utility::string_t, zero_memory_deleter> plaintext_string;
typedef std::unique_ptr< ::utility::string_t, zero_memory_deleter> plaintext_string;

#if defined(_WIN32) && !defined(CPPREST_TARGET_XP)
#if defined(__cplusplus_winrt)
Expand Down
2 changes: 1 addition & 1 deletion Release/include/cpprest/http_client.h
Original file line number Diff line number Diff line change
Expand Up @@ -757,7 +757,7 @@ class http_client

private:

std::shared_ptr<::web::http::client::http_pipeline> m_pipeline;
std::shared_ptr< ::web::http::client::http_pipeline> m_pipeline;
};

namespace details {
Expand Down
2 changes: 1 addition & 1 deletion Release/include/cpprest/json.h
Original file line number Diff line number Diff line change
Expand Up @@ -301,7 +301,7 @@ namespace json
/// <param name="fields">Field names associated with JSON values</param>
/// <param name="keep_order">Whether to preserve the original order of the fields</param>
/// <returns>A non-empty JSON object value</returns>
static _ASYNCRTIMP json::value __cdecl object(std::vector<std::pair<::utility::string_t, value>> fields, bool keep_order = false);
static _ASYNCRTIMP json::value __cdecl object(std::vector<std::pair< ::utility::string_t, value>> fields, bool keep_order = false);

/// <summary>
/// Creates an empty JSON array
Expand Down
2 changes: 1 addition & 1 deletion Release/include/cpprest/ws_client.h
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ class websocket_client_config
/// <returns>Vector of all the subprotocols </returns>
/// <remarks>If you want all the subprotocols in a comma separated string
/// they can be directly looked up in the headers using 'Sec-WebSocket-Protocol'.</remarks>
_ASYNCRTIMP std::vector<::utility::string_t> subprotocols() const;
_ASYNCRTIMP std::vector< ::utility::string_t> subprotocols() const;

/// <summary>
/// Gets the server certificate validation property.
Expand Down