Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Silence an unused result warning when building with Clang (#28315)
LLVM's `removeModule` is documented to return a `bool` but its value isn't used in our `removeModule` function which returns `void`, so Clang emits a warning. This just does a cast to `void` on the call to LLVM's function.
- Loading branch information