Fixed compilation error
Former-commit-id: 13b96b7bba638a1843a00264068e1c4858e6d301
This commit is contained in:
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user