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>;