From 4fa7f61b8f57e1c55b69661f75356beeb289f63c Mon Sep 17 00:00:00 2001 From: Reece Date: Sat, 2 Apr 2022 20:02:15 +0100 Subject: [PATCH] [*] update ctor --- Include/auROXTL/auResult.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Include/auROXTL/auResult.hpp b/Include/auROXTL/auResult.hpp index bb8f993..b6f243c 100644 --- a/Include/auROXTL/auResult.hpp +++ b/Include/auROXTL/auResult.hpp @@ -16,7 +16,7 @@ struct AuResult bool success; T type; - AuResult() : success() + AuResult() : success(false) {} AuResult(bool success) : success(success)