summaryrefslogtreecommitdiffstats
path: root/source/slang/syntax.cpp
diff options
context:
space:
mode:
authorYong He <yonghe@outlook.com>2017-11-04 18:45:42 -0400
committerYong He <yonghe@outlook.com>2017-11-04 18:45:42 -0400
commit8c0a429c292ea6735ce1ac14c22125266e8fb6c5 (patch)
tree2101960ceceb41bd2907216e912eef76f2a80030 /source/slang/syntax.cpp
parenta4fabfc85527bd4807a603dcde7c0a3762b11136 (diff)
fix warnings
Diffstat (limited to 'source/slang/syntax.cpp')
-rw-r--r--source/slang/syntax.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/slang/syntax.cpp b/source/slang/syntax.cpp
index 9b6f6d44b..255cf4ff1 100644
--- a/source/slang/syntax.cpp
+++ b/source/slang/syntax.cpp
@@ -388,7 +388,7 @@ void Type::accept(IValVisitor* visitor, void* extra)
return 0;
}
- bool ThisType::EqualsImpl(Type * type)
+ bool ThisType::EqualsImpl(Type * /*type*/)
{
return true;
}
@@ -399,7 +399,7 @@ void Type::accept(IValVisitor* visitor, void* extra)
return this;
}
- RefPtr<Val> ThisType::SubstituteImpl(Substitutions* subst, int* ioDiff)
+ RefPtr<Val> ThisType::SubstituteImpl(Substitutions* subst, int* /*ioDiff*/)
{
while (subst)
{