summaryrefslogtreecommitdiff
path: root/source/slang/slang-ast-reflect.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'source/slang/slang-ast-reflect.cpp')
-rw-r--r--source/slang/slang-ast-reflect.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/slang/slang-ast-reflect.cpp b/source/slang/slang-ast-reflect.cpp
index b16568d2e..66e57a744 100644
--- a/source/slang/slang-ast-reflect.cpp
+++ b/source/slang/slang-ast-reflect.cpp
@@ -39,7 +39,7 @@ struct ASTConstructAccess
static void* create(void* context)
{
ASTBuilder* astBuilder = (ASTBuilder*)context;
- return astBuilder->create<T>();
+ return astBuilder->createImpl<T>();
}
static void destroy(void* ptr)
{