diff options
author | Bert Belder <bertbelder@gmail.com> | 2018-08-26 19:22:07 +0200 |
---|---|---|
committer | Bert Belder <bertbelder@gmail.com> | 2018-08-26 19:22:37 +0200 |
commit | dfcde3e1eecc03a97d9e395ee9e61b7e03f1354d (patch) | |
tree | bd04bff9c3e5aa78c6e248d9cd07422de20bc2e1 /libdeno/internal.h | |
parent | 7041f2e5f19e8c9dfbe82d0ebf6456d9c9072aca (diff) |
format
Diffstat (limited to 'libdeno/internal.h')
-rw-r--r-- | libdeno/internal.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libdeno/internal.h b/libdeno/internal.h index b1806618b..93fdea5db 100644 --- a/libdeno/internal.h +++ b/libdeno/internal.h @@ -30,10 +30,10 @@ void Print(const v8::FunctionCallbackInfo<v8::Value>& args); void Recv(const v8::FunctionCallbackInfo<v8::Value>& args); void Send(const v8::FunctionCallbackInfo<v8::Value>& args); void SetGlobalErrorHandler(const v8::FunctionCallbackInfo<v8::Value>& args); -static intptr_t external_references[] = {reinterpret_cast<intptr_t>(Print), - reinterpret_cast<intptr_t>(Recv), - reinterpret_cast<intptr_t>(Send), - reinterpret_cast<intptr_t>(SetGlobalErrorHandler), 0}; +static intptr_t external_references[] = { + reinterpret_cast<intptr_t>(Print), reinterpret_cast<intptr_t>(Recv), + reinterpret_cast<intptr_t>(Send), + reinterpret_cast<intptr_t>(SetGlobalErrorHandler), 0}; Deno* NewFromSnapshot(void* data, deno_recv_cb cb); |