Commit 933c10cd by mchock-nv Committed by GitHub

Delete unused 'this' capture

Remove an unused 'this' entry from a lambda capture list. This cleans up a unused-lambda-capture warning.
parent d004e5ca
......@@ -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();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment