From 9aad037ccbae3be3ab50a6276f504068d895e70b Mon Sep 17 00:00:00 2001 From: dev0 Date: Tue, 13 Jan 2026 03:54:11 +0530 Subject: [PATCH] Expect macro --- Src/IACore/inc/IACore/PCH.hpp | 1 + 1 file changed, 1 insertion(+) diff --git a/Src/IACore/inc/IACore/PCH.hpp b/Src/IACore/inc/IACore/PCH.hpp index 61df00e..61196d0 100644 --- a/Src/IACore/inc/IACore/PCH.hpp +++ b/Src/IACore/inc/IACore/PCH.hpp @@ -596,6 +596,7 @@ template inline SharedPtr MakeUniqueProtected(A template using Expected = tl::expected<_expected_type, _unexpected_type>; ALIAS_FUNCTION(MakeUnexpected, tl::make_unexpected); +# define EXPECT(type) Expected using String = std::string; using StringView = std::string_view;