Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBen Noordhuis <info@bnoordhuis.nl>2011-11-09 19:33:50 +0400
committerBen Noordhuis <info@bnoordhuis.nl>2011-11-09 19:34:09 +0400
commitcdcb1118c83c9f5804b6d22c8b13b2dd084c140b (patch)
tree6fd986569dcaa55ac69cf31454be49ef48785f03 /src
parent0fa3cf94a3861765b95114f6b33b455d0d5bfdf9 (diff)
Remove stray NODE_MODULE() semi-colons.
Diffstat (limited to 'src')
-rw-r--r--src/cares_wrap.cc2
-rw-r--r--src/fs_event_wrap.cc2
-rw-r--r--src/node_buffer.cc2
-rw-r--r--src/node_crypto.cc2
-rw-r--r--src/node_file.cc2
-rw-r--r--src/node_http_parser.cc2
-rw-r--r--src/node_os.cc2
-rw-r--r--src/node_script.cc2
-rw-r--r--src/node_signal_watcher.cc2
-rw-r--r--src/node_zlib.cc2
-rw-r--r--src/pipe_wrap.cc2
-rw-r--r--src/process_wrap.cc2
-rw-r--r--src/tcp_wrap.cc2
-rw-r--r--src/timer_wrap.cc2
-rw-r--r--src/tty_wrap.cc2
-rw-r--r--src/udp_wrap.cc2
16 files changed, 16 insertions, 16 deletions
diff --git a/src/cares_wrap.cc b/src/cares_wrap.cc
index 409430ef58a..a881c25b073 100644
--- a/src/cares_wrap.cc
+++ b/src/cares_wrap.cc
@@ -763,4 +763,4 @@ static void Initialize(Handle<Object> target) {
} // namespace node
-NODE_MODULE(node_cares_wrap, node::cares_wrap::Initialize);
+NODE_MODULE(node_cares_wrap, node::cares_wrap::Initialize)
diff --git a/src/fs_event_wrap.cc b/src/fs_event_wrap.cc
index d21c994cb9a..0cce45501c1 100644
--- a/src/fs_event_wrap.cc
+++ b/src/fs_event_wrap.cc
@@ -152,4 +152,4 @@ void FSEventWrap::OnEvent(uv_fs_event_t* handle, const char* filename,
}
} // namespace node
-NODE_MODULE(node_fs_event_wrap, node::FSEventWrap::Initialize);
+NODE_MODULE(node_fs_event_wrap, node::FSEventWrap::Initialize)
diff --git a/src/node_buffer.cc b/src/node_buffer.cc
index 4188906013f..d2335ff28f7 100644
--- a/src/node_buffer.cc
+++ b/src/node_buffer.cc
@@ -797,4 +797,4 @@ void Buffer::Initialize(Handle<Object> target) {
} // namespace node
-NODE_MODULE(node_buffer, node::Buffer::Initialize);
+NODE_MODULE(node_buffer, node::Buffer::Initialize)
diff --git a/src/node_crypto.cc b/src/node_crypto.cc
index 26baf43566e..16fbaea019a 100644
--- a/src/node_crypto.cc
+++ b/src/node_crypto.cc
@@ -4313,5 +4313,5 @@ void InitCrypto(Handle<Object> target) {
} // namespace crypto
} // namespace node
-NODE_MODULE(node_crypto, node::crypto::InitCrypto);
+NODE_MODULE(node_crypto, node::crypto::InitCrypto)
diff --git a/src/node_file.cc b/src/node_file.cc
index 522738a4821..c6dcdda4d5a 100644
--- a/src/node_file.cc
+++ b/src/node_file.cc
@@ -1057,4 +1057,4 @@ void InitFs(Handle<Object> target) {
} // end namespace node
-NODE_MODULE(node_fs, node::InitFs);
+NODE_MODULE(node_fs, node::InitFs)
diff --git a/src/node_http_parser.cc b/src/node_http_parser.cc
index d2db36f8fb0..38251a1e7c0 100644
--- a/src/node_http_parser.cc
+++ b/src/node_http_parser.cc
@@ -640,4 +640,4 @@ void InitHttpParser(Handle<Object> target) {
} // namespace node
-NODE_MODULE(node_http_parser, node::InitHttpParser);
+NODE_MODULE(node_http_parser, node::InitHttpParser)
diff --git a/src/node_os.cc b/src/node_os.cc
index c7f8a296d01..287467531d7 100644
--- a/src/node_os.cc
+++ b/src/node_os.cc
@@ -184,4 +184,4 @@ void OS::Initialize(v8::Handle<v8::Object> target) {
} // namespace node
-NODE_MODULE(node_os, node::OS::Initialize);
+NODE_MODULE(node_os, node::OS::Initialize)
diff --git a/src/node_script.cc b/src/node_script.cc
index 6e4caff6e89..1f51113c927 100644
--- a/src/node_script.cc
+++ b/src/node_script.cc
@@ -455,5 +455,5 @@ void InitEvals(Handle<Object> target) {
} // namespace node
-NODE_MODULE(node_evals, node::InitEvals);
+NODE_MODULE(node_evals, node::InitEvals)
diff --git a/src/node_signal_watcher.cc b/src/node_signal_watcher.cc
index 3337ec26979..1027b3efd18 100644
--- a/src/node_signal_watcher.cc
+++ b/src/node_signal_watcher.cc
@@ -122,4 +122,4 @@ void SignalWatcher::Stop () {
} // namespace node
-NODE_MODULE(node_signal_watcher, node::SignalWatcher::Initialize);
+NODE_MODULE(node_signal_watcher, node::SignalWatcher::Initialize)
diff --git a/src/node_zlib.cc b/src/node_zlib.cc
index a972680f349..7c07ef3949e 100644
--- a/src/node_zlib.cc
+++ b/src/node_zlib.cc
@@ -356,4 +356,4 @@ void InitZlib(Handle<Object> target) {
} // namespace node
-NODE_MODULE(node_zlib, node::InitZlib);
+NODE_MODULE(node_zlib, node::InitZlib)
diff --git a/src/pipe_wrap.cc b/src/pipe_wrap.cc
index 5c2b38f1a00..0d0a0045764 100644
--- a/src/pipe_wrap.cc
+++ b/src/pipe_wrap.cc
@@ -255,4 +255,4 @@ Handle<Value> PipeWrap::Connect(const Arguments& args) {
} // namespace node
-NODE_MODULE(node_pipe_wrap, node::PipeWrap::Initialize);
+NODE_MODULE(node_pipe_wrap, node::PipeWrap::Initialize)
diff --git a/src/process_wrap.cc b/src/process_wrap.cc
index 72b684ce66d..7a6a8518a2d 100644
--- a/src/process_wrap.cc
+++ b/src/process_wrap.cc
@@ -235,4 +235,4 @@ class ProcessWrap : public HandleWrap {
} // namespace node
-NODE_MODULE(node_process_wrap, node::ProcessWrap::Initialize);
+NODE_MODULE(node_process_wrap, node::ProcessWrap::Initialize)
diff --git a/src/tcp_wrap.cc b/src/tcp_wrap.cc
index e29a92d2def..b2b8c5cd563 100644
--- a/src/tcp_wrap.cc
+++ b/src/tcp_wrap.cc
@@ -467,4 +467,4 @@ Handle<Value> TCPWrap::Connect6(const Arguments& args) {
} // namespace node
-NODE_MODULE(node_tcp_wrap, node::TCPWrap::Initialize);
+NODE_MODULE(node_tcp_wrap, node::TCPWrap::Initialize)
diff --git a/src/timer_wrap.cc b/src/timer_wrap.cc
index 6be4ef903d0..470c2d6b98d 100644
--- a/src/timer_wrap.cc
+++ b/src/timer_wrap.cc
@@ -213,4 +213,4 @@ class TimerWrap : public HandleWrap {
} // namespace node
-NODE_MODULE(node_timer_wrap, node::TimerWrap::Initialize);
+NODE_MODULE(node_timer_wrap, node::TimerWrap::Initialize)
diff --git a/src/tty_wrap.cc b/src/tty_wrap.cc
index 6185c80c960..b46e6c4e1fd 100644
--- a/src/tty_wrap.cc
+++ b/src/tty_wrap.cc
@@ -176,4 +176,4 @@ class TTYWrap : StreamWrap {
} // namespace node
-NODE_MODULE(node_tty_wrap, node::TTYWrap::Initialize);
+NODE_MODULE(node_tty_wrap, node::TTYWrap::Initialize)
diff --git a/src/udp_wrap.cc b/src/udp_wrap.cc
index 4048e9714d0..cd4c58ecabd 100644
--- a/src/udp_wrap.cc
+++ b/src/udp_wrap.cc
@@ -417,4 +417,4 @@ void AddressToJS(Handle<Object> info,
} // namespace node
-NODE_MODULE(node_udp_wrap, node::UDPWrap::Initialize);
+NODE_MODULE(node_udp_wrap, node::UDPWrap::Initialize)