diff options
Diffstat (limited to 'cad/gmsh/files/patch-src_geo_gmshSurface.cpp')
-rw-r--r-- | cad/gmsh/files/patch-src_geo_gmshSurface.cpp | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/cad/gmsh/files/patch-src_geo_gmshSurface.cpp b/cad/gmsh/files/patch-src_geo_gmshSurface.cpp new file mode 100644 index 000000000000..7f744d3ebfda --- /dev/null +++ b/cad/gmsh/files/patch-src_geo_gmshSurface.cpp @@ -0,0 +1,15 @@ +--- 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<SVector3, SVector3> gmshSurface::firstDer(const SPoint2 ¶m) ++std::pair<SVector3, SVector3> gmshSurface::firstDer(const SPoint2 ¶m) + { + Msg::Error("First derivative not implemented for this type of surface"); +- return Pair<SVector3, SVector3>(); ++ return std::pair<SVector3, SVector3>(); + } + + double gmshSurface::getMetricEigenvalue(const SPoint2 &) |