You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// fmtlog.h :487ifconstexpr (std::is_trivially_copyable_v<fmt::remove_cvref_t<Arg>>) { // false for Eigen::Vec2 memcpy(out, &arg, sizeof(Arg)); // If run this line, formatting is successful.
}
else {
new (out) fmt::remove_cvref_t<Arg>(std::forward<Arg>(arg));
}
return encodeArgs<CstringIdx>(cstringSize, out + sizeof(Arg), std::forward<Args>(args)...); // Segfault at this line.
The text was updated successfully, but these errors were encountered:
Eigen::Vec3, Eigen:: Mat3 and so on is ok except Eigen::Vec2
Make Eigen formattable
Segfault
The text was updated successfully, but these errors were encountered: