diff options
| author | Yong He <yonghe@outlook.com> | 2017-11-04 18:45:42 -0400 |
|---|---|---|
| committer | Yong He <yonghe@outlook.com> | 2017-11-04 18:45:42 -0400 |
| commit | 8c0a429c292ea6735ce1ac14c22125266e8fb6c5 (patch) | |
| tree | 2101960ceceb41bd2907216e912eef76f2a80030 /source/slang/syntax.cpp | |
| parent | a4fabfc85527bd4807a603dcde7c0a3762b11136 (diff) | |
fix warnings
Diffstat (limited to 'source/slang/syntax.cpp')
| -rw-r--r-- | source/slang/syntax.cpp | 4 |
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) { |
