diff options
author | Fedor Indutny <fedor.indutny@gmail.com> | 2013-07-31 22:07:29 +0400 |
---|---|---|
committer | Fedor Indutny <fedor.indutny@gmail.com> | 2013-07-31 22:12:06 +0400 |
commit | 8e29ce9f13f7e4b6c0296325287c05f78ff22ce0 (patch) | |
tree | c3420f601d23448e28439bbcd75c6aaf022b5d0c /src/tcp_wrap.h | |
parent | 3c6b5d5df1e445d080737e435675e11b102f0126 (diff) | |
download | node-new-8e29ce9f13f7e4b6c0296325287c05f78ff22ce0.tar.gz |
src: lint c++ code
Diffstat (limited to 'src/tcp_wrap.h')
-rw-r--r-- | src/tcp_wrap.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/tcp_wrap.h b/src/tcp_wrap.h index 317557d4a7..374458b78d 100644 --- a/src/tcp_wrap.h +++ b/src/tcp_wrap.h @@ -19,8 +19,8 @@ // OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE // USE OR OTHER DEALINGS IN THE SOFTWARE. -#ifndef TCP_WRAP_H_ -#define TCP_WRAP_H_ +#ifndef SRC_TCP_WRAP_H_ +#define SRC_TCP_WRAP_H_ #include "stream_wrap.h" namespace node { @@ -34,7 +34,7 @@ class TCPWrap : public StreamWrap { uv_tcp_t* UVHandle(); private: - TCPWrap(v8::Handle<v8::Object> object); + explicit TCPWrap(v8::Handle<v8::Object> object); ~TCPWrap(); static void New(const v8::FunctionCallbackInfo<v8::Value>& args); @@ -64,4 +64,4 @@ class TCPWrap : public StreamWrap { } // namespace node -#endif // TCP_WRAP_H_ +#endif // SRC_TCP_WRAP_H_ |