summaryrefslogtreecommitdiff
path: root/source/slang/slang-mangle.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'source/slang/slang-mangle.cpp')
-rw-r--r--source/slang/slang-mangle.cpp12
1 files changed, 1 insertions, 11 deletions
diff --git a/source/slang/slang-mangle.cpp b/source/slang/slang-mangle.cpp
index ab1c1ec4a..f88549e41 100644
--- a/source/slang/slang-mangle.cpp
+++ b/source/slang/slang-mangle.cpp
@@ -301,17 +301,7 @@ namespace Slang
auto parentGenericDeclRef = parentDeclRef.as<GenericDecl>();
if( parentDeclRef )
{
- // In certain cases we want to skip emitting the parent
- if(parentGenericDeclRef && (parentGenericDeclRef.getDecl()->inner != declRef.getDecl()))
- {
- }
- else if(parentDeclRef.as<FunctionDeclBase>())
- {
- }
- else
- {
- emitQualifiedName(context, parentDeclRef);
- }
+ emitQualifiedName(context, parentDeclRef);
}
// A generic declaration is kind of a pseudo-declaration