--- src/geo/gmshSurface.cpp.orig 2024-03-29 22:07:01 UTC +++ src/geo/gmshSurface.cpp @@ -23,10 +23,10 @@ SVector3 gmshSurface::normal(const SPoint2 ¶m) con return SVector3(); } -Pair gmshSurface::firstDer(const SPoint2 ¶m) +std::pair gmshSurface::firstDer(const SPoint2 ¶m) { Msg::Error("First derivative not implemented for this type of surface"); - return Pair(); + return std::pair(); } double gmshSurface::getMetricEigenvalue(const SPoint2 &)