From bd6dc9ebab058be28f59de33e05e036c91951ba6 Mon Sep 17 00:00:00 2001 From: Anna Henningsen Date: Fri, 11 May 2018 15:46:41 +0200 Subject: src: replace `template<` → `template <` MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit PR-URL: https://github.com/nodejs/node/pull/20675 Reviewed-By: Colin Ihrig Reviewed-By: Ben Noordhuis Reviewed-By: Gus Caplan Reviewed-By: Tobias Nießen Reviewed-By: Tiancheng "Timothy" Gu Reviewed-By: James M Snell Reviewed-By: Trivikram Kamat Reviewed-By: Daniel Bevenius Reviewed-By: Ruben Bridgewater --- src/util.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/util.h') diff --git a/src/util.h b/src/util.h index 9595ee8f07..0e6fd5dd06 100644 --- a/src/util.h +++ b/src/util.h @@ -420,7 +420,7 @@ struct OnScopeLeave { }; // Simple RAII wrapper for contiguous data that uses malloc()/free(). -template +template struct MallocedBuffer { T* data; size_t size; @@ -448,10 +448,10 @@ struct MallocedBuffer { }; // Test whether some value can be called with (). -template +template struct is_callable : std::is_function { }; -template +template struct is_callable::value >::type> : std::true_type { }; -- cgit v1.2.3