Fixes specialization error
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Deukhoofd 2020-12-11 16:19:18 +01:00
parent 3b4ba7c82b
commit 880f476034
Signed by: Deukhoofd
GPG Key ID: F63E044490819F6F
1 changed files with 1 additions and 1 deletions

View File

@ -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 T> class Result<T> {
template <class T> class Result {
public:
/// @brief Return a success, along with the success value.
/// @param value The value to return.