blob: 7f744d3ebfda60a47a1cba10206397de3659d495 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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 &)
|