math_opt: Fix macos build (#4636)

This commit is contained in:
Corentin Le Molgat
2025-04-28 14:29:33 +02:00
parent 4c1c0831d7
commit a5eda1b5e9

View File

@@ -53,7 +53,7 @@ template <int i, int j>
struct ElementSymmetry {
static_assert(0 <= i && i < j);
static constexpr std::string GetName() {
static std::string GetName() {
return absl::StrFormat("ElementSymmetry<%i, %i>", i, j);
};