summaryrefslogtreecommitdiffstats
path: root/source/slang/slang.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'source/slang/slang.cpp')
-rw-r--r--source/slang/slang.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/slang/slang.cpp b/source/slang/slang.cpp
index 3582a6571..e97f5bb1b 100644
--- a/source/slang/slang.cpp
+++ b/source/slang/slang.cpp
@@ -557,7 +557,7 @@ Type* Program::getTypeFromString(String typeStr, DiagnosticSink* sink)
RefPtr<Expr> typeExpr = linkage->parseTypeString(
typeStr, s);
type = checkProperType(linkage, TypeExp(typeExpr), sink);
- if(type)
+ if (type && !type.as<ErrorType>())
break;
}
if( type )