From 4369f9d417acba7f87d1ffd6d94c73d0faf92f86 Mon Sep 17 00:00:00 2001 From: Christophe Geuzaine <cgeuzaine@ulg.ac.be> Date: Fri, 5 Feb 2016 10:43:12 +0000 Subject: [PATCH] don't warn if model is empty --- Geo/GModel.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/Geo/GModel.cpp b/Geo/GModel.cpp index 8365baf6fa..743d664f77 100644 --- a/Geo/GModel.cpp +++ b/Geo/GModel.cpp @@ -523,7 +523,6 @@ int GModel::getDim() const if(getNumFaces() > 0) return 2; if(getNumEdges() > 0) return 1; if(getNumVertices() > 0) return 0; - Msg::Warning("The model is empty, dim = -1"); return -1; } -- GitLab