Update rmlarsen email address from @google.com to @gmail.com

libeigen/eigen!2212

Co-authored-by: Rasmus Munk Larsen <rmlarsen@gmail.com>
This commit is contained in:
Rasmus Munk Larsen
2026-02-25 07:45:02 -08:00
parent d0d70a9527
commit 38f0f42755
21 changed files with 1377 additions and 356 deletions

View File

@@ -685,7 +685,8 @@ class PlainObjectBase : public internal::dense_xpr_base<Derived>::type {
eigen_assert((this->size() == 0 || (IsVectorAtCompileTime ? (this->size() == other.size())
: (rows() == other.rows() && cols() == other.cols()))) &&
"Size mismatch. Automatic resizing is disabled because EIGEN_NO_AUTOMATIC_RESIZING is defined");
EIGEN_ONLY_USED_FOR_DEBUG(other);
// Allow resizing of default-constructed (empty) destinations.
if (this->size() == 0) resizeLike(other);
#else
resizeLike(other);
#endif