From d548fdaee802dcdd9df10c2410ab472fab9aeca7 Mon Sep 17 00:00:00 2001 From: ThePhD Date: Fri, 27 Jun 2014 01:34:16 -0700 Subject: [PATCH] Fix spacing issues --- sol/default_construct.hpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/sol/default_construct.hpp b/sol/default_construct.hpp index 0006236a..6e1be826 100644 --- a/sol/default_construct.hpp +++ b/sol/default_construct.hpp @@ -28,11 +28,11 @@ namespace sol { struct default_construct { - template - void operator()(T&& obj, Args&&... args) const { - std::allocator> alloc{}; - alloc.construct(obj, std::forward(args)...); - } + template + void operator()(T&& obj, Args&&... args) const { + std::allocator> alloc{}; + alloc.construct(obj, std::forward(args)...); + } }; } // sol