Skip to content

Fix unreachable-break issue in dwio/rcfile/RcSerdeText.cpp +5 #12488

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion backends/vulkan/runtime/vk_api/Pipeline.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,6 @@ VkImageLayout vk_layout(
default:
return VK_IMAGE_LAYOUT_GENERAL;
}
break;
case PipelineStage::TRANSFER:
switch (access) {
case MemoryAccessType::READ:
Expand Down
3 changes: 0 additions & 3 deletions devtools/bundled_program/bundled_program.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -329,7 +329,6 @@ ET_NODISCARD Error load_bundled_input(
NotSupported,
"Data type %hhu not supported",
static_cast<uint8_t>(bundled_input->val_type()));
break;
}
}

Expand Down Expand Up @@ -441,7 +440,6 @@ ET_NODISCARD ErrorStats compute_method_output_error_stats(
"Data type %hhd not supported",
static_cast<uint8_t>(bundled_expected_output->val_type()));
return {Error::NotSupported, 0, 0, 0, 0};
break; // Never reached
}
}
}
Expand Down Expand Up @@ -523,7 +521,6 @@ ET_NODISCARD Error verify_method_outputs(
NotSupported,
"Data type %hhd not supported",
static_cast<uint8_t>(bundled_expected_output->val_type()));
break;
}
}
}
Expand Down
Loading