From 6798e285e29dbed9a60908b1a23f481de69036de Mon Sep 17 00:00:00 2001 From: Alexander Farber Date: Sun, 12 Jan 2025 21:05:36 +0100 Subject: [PATCH] Fix the indentation --- third_party/sol2/include/sol/sol.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/third_party/sol2/include/sol/sol.hpp b/third_party/sol2/include/sol/sol.hpp index f91d4468c..d5070c90b 100644 --- a/third_party/sol2/include/sol/sol.hpp +++ b/third_party/sol2/include/sol/sol.hpp @@ -6752,8 +6752,8 @@ namespace sol { static_assert(std::is_constructible::value, "T must be constructible with Args"); *this = nullopt; - new (static_cast(this)) optional(std::in_place, std::forward(args)...); - return **this; + new (static_cast(this)) optional(std::in_place, std::forward(args)...); + return **this; } /// Swaps this optional with the other.