From: Mikko Rasa Date: Fri, 6 Jan 2017 12:46:51 +0000 (+0200) Subject: Use correct class to refer to member function X-Git-Url: http://git.tdb.fi/?p=libs%2Fmath.git;a=commitdiff_plain;h=93e3f3af03f911396c678a2356a54dc9885b21f8 Use correct class to refer to member function --- diff --git a/source/geometry/loader.h b/source/geometry/loader.h index e73a8e3..2aff83f 100644 --- a/source/geometry/loader.h +++ b/source/geometry/loader.h @@ -229,7 +229,7 @@ template inline Loader::Loader(bool s): DimensionIndependentLoader(s) { - this->add("extruded", &DimensionIndependentLoader::template shape >); + this->add("extruded", &Loader::template shape >); }