summaryrefslogtreecommitdiffstats
path: root/source/core/slang-smart-pointer.h
diff options
context:
space:
mode:
Diffstat (limited to 'source/core/slang-smart-pointer.h')
-rw-r--r--source/core/slang-smart-pointer.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/source/core/slang-smart-pointer.h b/source/core/slang-smart-pointer.h
index 2e5821ffd..a6aa35906 100644
--- a/source/core/slang-smart-pointer.h
+++ b/source/core/slang-smart-pointer.h
@@ -10,7 +10,7 @@
namespace Slang
{
// Base class for all reference-counted objects
- class RefObject
+ class SLANG_RT_API RefObject
{
private:
UInt referenceCount;
@@ -86,8 +86,7 @@ namespace Slang
SLANG_FORCE_INLINE const T* as(const RefObject* obj) { return dynamicCast<T>(obj); }
// "Smart" pointer to a reference-counted object
- template<typename T>
- struct RefPtr
+ template<typename T> struct SLANG_RT_API RefPtr
{
RefPtr()
: pointer(nullptr)