]> git.tdb.fi Git - libs/math.git/commitdiff
Use correct class to refer to member function
authorMikko Rasa <tdb@tdb.fi>
Fri, 6 Jan 2017 12:46:51 +0000 (14:46 +0200)
committerMikko Rasa <tdb@tdb.fi>
Fri, 6 Jan 2017 12:46:51 +0000 (14:46 +0200)
source/geometry/loader.h

index e73a8e39fdcd30439e1cb3c98e8b1f896788d573..2aff83fb43371a3160f0a501cda223b9c54bea76 100644 (file)
@@ -229,7 +229,7 @@ template<typename T, unsigned D>
 inline Loader<T, D, true>::Loader(bool s):
        DimensionIndependentLoader<T, D>(s)
 {
-       this->add("extruded", &DimensionIndependentLoader<T, D>::template shape<ExtrudedShape<T, D> >);
+       this->add("extruded", &Loader<T, D>::template shape<ExtrudedShape<T, D> >);
 }