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
diff options
context:
space:
mode:
authorAnna Henningsen <anna@addaleax.net>2018-05-11 16:46:41 +0300
committerAnna Henningsen <anna@addaleax.net>2018-05-14 19:09:23 +0300
commitbd6dc9ebab058be28f59de33e05e036c91951ba6 (patch)
treebd5a35c7f6c2c5d3a9275608c095055b9612d7f9 /src/inspector_js_api.cc
parent12b0159adf88a46b6ea4ffc1f8b910ebb56fecb9 (diff)
src: replace `template<` → `template <`
PR-URL: https://github.com/nodejs/node/pull/20675 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Gus Caplan <me@gus.host> Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: Tiancheng "Timothy" Gu <timothygu99@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com> Reviewed-By: Daniel Bevenius <daniel.bevenius@gmail.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
Diffstat (limited to 'src/inspector_js_api.cc')
-rw-r--r--src/inspector_js_api.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/inspector_js_api.cc b/src/inspector_js_api.cc
index ae353defe80..802029ac4f2 100644
--- a/src/inspector_js_api.cc
+++ b/src/inspector_js_api.cc
@@ -194,7 +194,7 @@ static void* GetAsyncTask(int64_t asyncId) {
return reinterpret_cast<void*>(asyncId << 1);
}
-template<void (Agent::*asyncTaskFn)(void*)>
+template <void (Agent::*asyncTaskFn)(void*)>
static void InvokeAsyncTaskFnWithId(const FunctionCallbackInfo<Value>& args) {
Environment* env = Environment::GetCurrent(args);
CHECK(args[0]->IsNumber());