From 3bbe57853e7cd692e273e7ab4079cfa89477cf9b Mon Sep 17 00:00:00 2001 From: Shane Grant Date: Thu, 15 Mar 2018 22:16:26 -0700 Subject: [PATCH] Fix spacing #470 --- include/cereal/details/static_object.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/cereal/details/static_object.hpp b/include/cereal/details/static_object.hpp index 7152a003b..2415cb579 100644 --- a/include/cereal/details/static_object.hpp +++ b/include/cereal/details/static_object.hpp @@ -94,7 +94,7 @@ namespace cereal std::unique_lock lock; #else public: - LockGuard(LockGuard const &) = default; // prevents implicit copy ctor warning + LockGuard(LockGuard const &) = default; // prevents implicit copy ctor warning ~LockGuard() CEREAL_NOEXCEPT {} // prevents variable not used #endif };