From 617210a84af8f501d3cc4638f3e8c7a551ee50f7 Mon Sep 17 00:00:00 2001 From: dev0 Date: Mon, 12 Jan 2026 23:40:37 +0530 Subject: [PATCH] MakeShared & MakeUnique --- Src/IACore/inc/IACore/PCH.hpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Src/IACore/inc/IACore/PCH.hpp b/Src/IACore/inc/IACore/PCH.hpp index bf495d7..201dacd 100644 --- a/Src/IACore/inc/IACore/PCH.hpp +++ b/Src/IACore/inc/IACore/PCH.hpp @@ -565,6 +565,8 @@ template using Deque = std::deque<_value_type>; template using Pair = std::pair<_type_a, _type_b>; template using Tuple = std::tuple; template using KeyValuePair = std::pair<_key_type, _value_type>; +ALIAS_TEMPLATE_FUNCTION(_value_type, MakeShared, std::make_shared); +ALIAS_TEMPLATE_FUNCTION(_value_type, MakeUnique, std::make_unique); template using Expected = tl::expected<_expected_type, _unexpected_type>;