From 1d803641d549fc6d843b78e260f3938da1f3d059 Mon Sep 17 00:00:00 2001 From: Christophe Geuzaine <cgeuzaine@ulg.ac.be> Date: Thu, 16 Nov 2017 13:50:46 +0100 Subject: [PATCH] default arg for setTransfiniteVolume --- Common/gmsh.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Common/gmsh.h b/Common/gmsh.h index e72ed21c5d..2995045395 100644 --- a/Common/gmsh.h +++ b/Common/gmsh.h @@ -86,7 +86,8 @@ GMSH_API gmshModelSetTransfiniteSurface(const int tag, const std::vector<int> &cornerTags = std::vector<int>()); GMSH_API gmshModelSetTransfiniteVolume(const int tag, - const std::vector<int> &cornerTags); + const std::vector<int> &cornerTags = + std::vector<int>()); GMSH_API gmshModelSetRecombine(const int dim, const int tag, const double angle = 45.); GMSH_API gmshModelSetSmoothing(const int dim, const int tag, const int val); GMSH_API gmshModelSetReverseMesh(const int dim, const int tag, const bool val = true); -- GitLab