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 include/matx/core/cache.h
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ __MATX_INLINE__ matxCache_t &InitCache() {

__attribute__ ((visibility ("default")))
__MATX_INLINE__ matxCache_t &GetCache() {
const auto &tracker = GetAllocMap();
[[maybe_unused]] const auto &tracker = GetAllocMap();
return InitCache();
}

Expand Down
1 change: 0 additions & 1 deletion include/matx/transforms/svd.h
Original file line number Diff line number Diff line change
Expand Up @@ -378,7 +378,6 @@ inline void svdbpi_impl(UType &U, SType &S, VTType &VT, const AType &A, int max_
static_assert(VTType::Rank() == AType::Rank());
static_assert(SType::Rank() == AType::Rank()-1);

using ATypeS = typename AType::scalar_type;
using STypeS = typename SType::scalar_type;
const int RANK = AType::Rank();

Expand Down