Thanks to visit codestin.com
Credit goes to github.com

Skip to content
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
2 changes: 1 addition & 1 deletion bazel/llvm.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ def _llvm_loader_repository(repository_ctx):
executable = False,
)

LLVM_COMMIT_SHA = "c6e23ab80753a01dce270f5f8a133fbec942315d"
LLVM_COMMIT_SHA = "87bf5ee23863bc0b467ee44b2184b2c134a98464"

def llvm_loader_repository_dependencies():
# This *declares* the dependency, but it won't actually be *downloaded* unless it's used.
Expand Down
2 changes: 1 addition & 1 deletion examples/types/absl_status/rust_api.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception

/// This function is only callable from Rust (for now).
pub fn returns_status(ok: bool) -> status::Status {
pub fn returns_status(ok: bool) -> status_rs::Status {
if ok {
status::OkStatus()
} else {
Expand Down