corrected bug on PointBase class (thanks Oscar Barney)

This commit is contained in:
ganovelli 2008-09-22 13:40:53 +00:00
parent 889b2ddaa3
commit b2960231ca
1 changed files with 1 additions and 1 deletions

View File

@ -969,7 +969,7 @@ template<unsigned int N,typename S>
struct PointBase : Point<N,S>
{
PointBase()
:Point<D,S>()
:Point<N,S>()
{
}
};