Skip to content

Commit

Permalink
No public description
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 688003278
  • Loading branch information
MediaPipe Team authored and copybara-github committed Oct 21, 2024
1 parent faf76ab commit 10c393b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion mediapipe/framework/api2/port.h
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ struct NoneType {

template <auto& kP>
struct SameType {
static constexpr const decltype(kP)& kPort = kP;
static constexpr const decltype(kP) & kPort = kP;
};

class PacketTypeAccess;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ absl::Status PackWeightsCache::Initialize() {
cache_provider_.offset_to_addr =
(void* (*)(void*, size_t))PackWeightsCache::offset_to_addr;
cache_provider_.delete_cache =
(enum xnn_status(*)(void*))PackWeightsCache::delete_cache;
(enum xnn_status (*)(void*))PackWeightsCache::delete_cache;

return absl::OkStatus();
}
Expand Down

0 comments on commit 10c393b

Please sign in to comment.