summaryrefslogtreecommitdiff
path: root/src/process_wrap.cc
diff options
context:
space:
mode:
authorTrevor Norris <trev.norris@gmail.com>2013-10-29 13:09:52 -0700
committerTrevor Norris <trev.norris@gmail.com>2013-10-29 15:09:44 -0700
commitf2e3be53bc33fc9269c248cec4ac26d6ec9054f7 (patch)
tree544ee459002a8fc1c8f3dccb2ff2025959fdd82b /src/process_wrap.cc
parent60a3e695cb6ff09f81de4195368535fdb11e2da9 (diff)
downloadandroid-node-v8-f2e3be53bc33fc9269c248cec4ac26d6ec9054f7.tar.gz
android-node-v8-f2e3be53bc33fc9269c248cec4ac26d6ec9054f7.tar.bz2
android-node-v8-f2e3be53bc33fc9269c248cec4ac26d6ec9054f7.zip
src: don't use class specific Unwrap methods
Instead use the template functions in util.h.
Diffstat (limited to 'src/process_wrap.cc')
-rw-r--r--src/process_wrap.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/process_wrap.cc b/src/process_wrap.cc
index 0a4029c185..2ed3d8f301 100644
--- a/src/process_wrap.cc
+++ b/src/process_wrap.cc
@@ -110,7 +110,7 @@ class ProcessWrap : public HandleWrap {
Local<Object> handle = stdio->Get(handle_key).As<Object>();
options->stdio[i].data.stream =
reinterpret_cast<uv_stream_t*>(
- PipeWrap::Unwrap(handle)->UVHandle());
+ UnwrapObject<PipeWrap>(handle)->UVHandle());
} else if (type->Equals(FIXED_ONE_BYTE_STRING(node_isolate, "wrap"))) {
Local<String> handle_key =
FIXED_ONE_BYTE_STRING(node_isolate, "handle");