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
4 changes: 2 additions & 2 deletions BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -1278,10 +1278,10 @@ grpc_cc_library(
"//src/core:memory_usage",
"//src/core:notification",
"//src/core:per_cpu",
"//src/core:single_set_ptr",
"//src/core:ref_counted",
"//src/core:resolved_address",
"//src/core:shared_bit_gen",
"//src/core:single_set_ptr",
"//src/core:slice",
"//src/core:sync",
"//src/core:time",
Expand Down Expand Up @@ -3154,6 +3154,7 @@ grpc_cc_library(
],
visibility = ["//bazel:alt_grpc_base_legacy"],
deps = [
"channelz",
"debug_location",
"event_engine_base_hdrs",
"exec_ctx",
Expand All @@ -3163,7 +3164,6 @@ grpc_cc_library(
"grpc_trace",
"iomgr",
"orphanable",
"channelz",
"ref_counted_ptr",
"//src/core:channel_args",
"//src/core:closure",
Expand Down
4 changes: 2 additions & 2 deletions src/core/util/memory_usage.h
Original file line number Diff line number Diff line change
Expand Up @@ -131,9 +131,9 @@ size_t MemoryUsage(const T& x) {
} else if constexpr (std::is_same_v<T, absl::string_view>) {
// Assume that the string_view is not owning the string.
return sizeof(T);
} else if constexpr (std::is_same_v<T, grpc_core::Timestamp>) {
} else if constexpr (std::is_same_v<T, Timestamp>) {
return sizeof(T);
} else if constexpr (std::is_same_v<T, grpc_core::Duration>) {
} else if constexpr (std::is_same_v<T, Duration>) {
return sizeof(T);
} else if constexpr (category == Category::kSimple) {
return sizeof(T);
Expand Down
2 changes: 1 addition & 1 deletion test/core/channelz/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -111,4 +111,4 @@ grpc_fuzz_test(
deps = [
"//:channelz",
],
)
)