typed arrays: don't declare as module

TypedArrays is not a module, it is attached to the global object.
Don't register it with Node's module system.
pull/24504/head
Dean McNamee 2012-12-23 23:43:51 +01:00 committed by Ben Noordhuis
parent b50d51ef5b
commit 3f75454426
2 changed files with 0 additions and 3 deletions

View File

@ -22,7 +22,6 @@
NODE_EXT_LIST_START
NODE_EXT_LIST_ITEM(node_buffer)
NODE_EXT_LIST_ITEM(node_typed_array)
#if HAVE_OPENSSL
NODE_EXT_LIST_ITEM(node_crypto)
#endif

View File

@ -861,5 +861,3 @@ int SizeOfArrayElementForType(v8::ExternalArrayType type) {
}
} // namespace v8_typed_array
NODE_MODULE(node_typed_array, v8_typed_array::AttachBindings)