From 933c10cd4b2bee492e34dcd77237c265508a0bea Mon Sep 17 00:00:00 2001 From: mchock-nv <31867887+mchock-nv@users.noreply.github.com> Date: Mon, 11 Sep 2017 15:20:52 -0700 Subject: [PATCH] Delete unused 'this' capture Remove an unused 'this' entry from a lambda capture list. This cleans up a unused-lambda-capture warning. --- hlsl/hlslParseHelper.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hlsl/hlslParseHelper.cpp b/hlsl/hlslParseHelper.cpp index 346a1170d..66cd0409a 100755 --- a/hlsl/hlslParseHelper.cpp +++ b/hlsl/hlslParseHelper.cpp @@ -9118,7 +9118,7 @@ void HlslParseContext::addPatchConstantInvocation() } }; - const auto isOutputPatch = [this](TFunction& patchConstantFunction, int param) { + const auto isOutputPatch = [](TFunction& patchConstantFunction, int param) { const TType& type = *patchConstantFunction[param].type; const TBuiltInVariable biType = patchConstantFunction[param].getDeclaredBuiltIn(); -- GitLab