Fixed compilation error

Former-commit-id: 13b96b7bba638a1843a00264068e1c4858e6d301
This commit is contained in:
Lynix 2013-09-16 00:36:50 +02:00
parent ffb993c864
commit f0eac2bc0d
1 changed files with 2 additions and 2 deletions

View File

@ -156,7 +156,7 @@ NzVector3<T>& NzOrientedBox<T>::operator()(unsigned int i)
}
#endif
return &m_corners[i];
return m_corners[i];
}
template<typename T>
@ -173,7 +173,7 @@ NzVector3<T> NzOrientedBox<T>::operator()(unsigned int i) const
}
#endif
return &m_corners[i];
return m_corners[i];
}
template<typename T>