Skip to content
This repository has been archived by the owner on Jun 12, 2018. It is now read-only.

Commit

Permalink
renamed #define CLIENT_WS_HPP and CLIENT_WSS_HPP to CLIENT_HTTP_HPP a…
Browse files Browse the repository at this point in the history
…nd CLIENT_HTTPS_HPP.
  • Loading branch information
eidheim committed Nov 2, 2014
1 parent db36534 commit 4a63b12
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions client_http.hpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#ifndef CLIENT_WS_HPP
#define CLIENT_WS_HPP
#ifndef CLIENT_HTTP_HPP
#define CLIENT_HTTP_HPP

#include <boost/asio.hpp>

Expand Down Expand Up @@ -200,4 +200,4 @@ namespace SimpleWeb {
};
}

#endif /* CLIENT_WS_HPP */
#endif /* CLIENT_HTTP_HPP */
6 changes: 3 additions & 3 deletions client_https.hpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#ifndef CLIENT_WSS_HPP
#define CLIENT_WSS_HPP
#ifndef CLIENT_HTTPS_HPP
#define CLIENT_HTTPS_HPP

#include "client_http.hpp"
#include <boost/asio/ssl.hpp>
Expand Down Expand Up @@ -46,4 +46,4 @@ namespace SimpleWeb {
};
}

#endif /* CLIENT_WSS_HPP */
#endif /* CLIENT_HTTPS_HPP */

0 comments on commit 4a63b12

Please sign in to comment.