From 880f4760349381cdaab903d03b241d5dec370d6c Mon Sep 17 00:00:00 2001 From: Deukhoofd Date: Fri, 11 Dec 2020 16:19:18 +0100 Subject: [PATCH] Fixes specialization error --- src/Result.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Result.hpp b/src/Result.hpp index cad2b62..bfef008 100644 --- a/src/Result.hpp +++ b/src/Result.hpp @@ -7,7 +7,7 @@ namespace ArbUt { /// @brief Simple data class to return a functions success or failure. /// @tparam T The potential return value of the function. - template class Result { + template class Result { public: /// @brief Return a success, along with the success value. /// @param value The value to return.