diff options
| author | Yong He <yonghe@outlook.com> | 2017-11-04 16:09:48 -0400 |
|---|---|---|
| committer | Yong He <yonghe@outlook.com> | 2017-11-04 16:09:48 -0400 |
| commit | 288841f66c808af70ad7687f9704c87075129b18 (patch) | |
| tree | b6e2e4f5a28be28b28a346f3803121c34bb28f87 /source/slang/parser.cpp | |
| parent | 664e0da8dff1d04860cc46ce8139cbd47e15c552 (diff) | |
fixed all warnings
Diffstat (limited to 'source/slang/parser.cpp')
| -rw-r--r-- | source/slang/parser.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/slang/parser.cpp b/source/slang/parser.cpp index 322f403e6..8ec6f70ca 100644 --- a/source/slang/parser.cpp +++ b/source/slang/parser.cpp @@ -3342,7 +3342,7 @@ namespace Slang return expr; } - static RefPtr<Expr> parseBoolLitExpr(Parser* parser, bool value) + static RefPtr<Expr> parseBoolLitExpr(Parser* /*parser*/, bool value) { RefPtr<ConstantExpr> constExpr = new ConstantExpr(); constExpr->ConstType = ConstantExpr::ConstantType::Bool; |
