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

Commit 4a63b12

Browse files
committed
renamed #define CLIENT_WS_HPP and CLIENT_WSS_HPP to CLIENT_HTTP_HPP and CLIENT_HTTPS_HPP.
1 parent db36534 commit 4a63b12

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

client_http.hpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
#ifndef CLIENT_WS_HPP
2-
#define CLIENT_WS_HPP
1+
#ifndef CLIENT_HTTP_HPP
2+
#define CLIENT_HTTP_HPP
33

44
#include <boost/asio.hpp>
55

@@ -200,4 +200,4 @@ namespace SimpleWeb {
200200
};
201201
}
202202

203-
#endif /* CLIENT_WS_HPP */
203+
#endif /* CLIENT_HTTP_HPP */

client_https.hpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
#ifndef CLIENT_WSS_HPP
2-
#define CLIENT_WSS_HPP
1+
#ifndef CLIENT_HTTPS_HPP
2+
#define CLIENT_HTTPS_HPP
33

44
#include "client_http.hpp"
55
#include <boost/asio/ssl.hpp>
@@ -46,4 +46,4 @@ namespace SimpleWeb {
4646
};
4747
}
4848

49-
#endif /* CLIENT_WSS_HPP */
49+
#endif /* CLIENT_HTTPS_HPP */

0 commit comments

Comments
 (0)