Skip to content
Merged
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 MODULE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ llvm = use_repo_rule("@toolchains_llvm//toolchain:rules.bzl", "llvm")

llvm(
name = "llvm",
llvm_version = "19.1.3",
llvm_version = "20.1.7",
)

# Load dependencies which are "public", i.e., made available to downstream
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,8 @@ class ExampleCppClass {
/// Serves as an example for binding (and deprecating) a simple struct. This
/// allows the struct to be constructed with ParamInit and deprecated using
/// the corresponding DeprecatedParamInit.
struct DRAKE_DEPRECATED(
"2038-01-19", "Do not use ExampleCppStruct") ExampleCppStruct {
struct DRAKE_DEPRECATED("2038-01-19", "Do not use ExampleCppStruct")
ExampleCppStruct {
int i{};
int j{};
};
Expand Down