Fixed compilation error
Former-commit-id: 13b96b7bba638a1843a00264068e1c4858e6d301
This commit is contained in:
parent
ffb993c864
commit
f0eac2bc0d
|
|
@ -156,7 +156,7 @@ NzVector3<T>& NzOrientedBox<T>::operator()(unsigned int i)
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
return &m_corners[i];
|
return m_corners[i];
|
||||||
}
|
}
|
||||||
|
|
||||||
template<typename T>
|
template<typename T>
|
||||||
|
|
@ -173,7 +173,7 @@ NzVector3<T> NzOrientedBox<T>::operator()(unsigned int i) const
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
return &m_corners[i];
|
return m_corners[i];
|
||||||
}
|
}
|
||||||
|
|
||||||
template<typename T>
|
template<typename T>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue