Enable empty_if_body lint.
This CL updates the one instance of an empty if body in Dawn to remove the if. This allows enabling the empty_if_body lint check. Change-Id: I5c05db828e8033b4f3155a34c3a6723bfd3181d6 Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/86082 Reviewed-by: Corentin Wallez <cwallez@chromium.org> Commit-Queue: Dan Sinclair <dsinclair@chromium.org> Auto-Submit: Dan Sinclair <dsinclair@chromium.org>
This commit is contained in:
parent
c9fcc45843
commit
566d7f25b8
|
@ -10,4 +10,3 @@ filter=-readability/namespace
|
|||
filter=-runtime/explicit
|
||||
filter=-runtime/indentation_namespace
|
||||
filter=-runtime/int
|
||||
filter=-whitespace/empty_if_body
|
||||
|
|
|
@ -131,7 +131,7 @@ namespace dawn::native {
|
|||
}
|
||||
|
||||
void RenderPassEncoder::APIEnd() {
|
||||
if (mEncodingContext->TryEncode(
|
||||
mEncodingContext->TryEncode(
|
||||
this,
|
||||
[&](CommandAllocator* allocator) -> MaybeError {
|
||||
if (IsValidationEnabled()) {
|
||||
|
@ -154,8 +154,7 @@ namespace dawn::native {
|
|||
std::move(mIndirectDrawMetadata)));
|
||||
return {};
|
||||
},
|
||||
"encoding %s.End().", this)) {
|
||||
}
|
||||
"encoding %s.End().", this);
|
||||
}
|
||||
|
||||
void RenderPassEncoder::APIEndPass() {
|
||||
|
|
Loading…
Reference in New Issue