From 8c8b532eb186e98c8c946a74b7b56742e6de3960 Mon Sep 17 00:00:00 2001 From: Oliver Sander <sander@igpm.rwth-aachen.de> Date: Wed, 4 Jan 2012 11:21:48 +0000 Subject: [PATCH] bugfix: method size() must return size_t [[Imported from SVN: r8351]] --- dune/gfe/globalgfetestfunctionbasis.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dune/gfe/globalgfetestfunctionbasis.hh b/dune/gfe/globalgfetestfunctionbasis.hh index 5f61e6fc..c466eeeb 100644 --- a/dune/gfe/globalgfetestfunctionbasis.hh +++ b/dune/gfe/globalgfetestfunctionbasis.hh @@ -61,7 +61,7 @@ public: /** \brief Get the total number of global (block) basis functions. * Only return the number of Lagrange points. For each Lagrange point there are (tangentDim) local shape functions */ - int size() const + size_t size() const { return basis_.size(); } -- GitLab