Replace typedef keywords by using
This commit is contained in:
@@ -69,8 +69,8 @@ namespace Nz
|
||||
OrientedBox<T> obb;
|
||||
};
|
||||
|
||||
typedef BoundingVolume<double> BoundingVolumed;
|
||||
typedef BoundingVolume<float> BoundingVolumef;
|
||||
using BoundingVolumed = BoundingVolume<double>;
|
||||
using BoundingVolumef = BoundingVolume<float>;
|
||||
|
||||
template<typename T> bool Serialize(SerializationContext& context, const BoundingVolume<T>& boundingVolume, TypeTag<BoundingVolume<T>>);
|
||||
template<typename T> bool Unserialize(SerializationContext& context, BoundingVolume<T>* boundingVolume, TypeTag<BoundingVolume<T>>);
|
||||
|
||||
Reference in New Issue
Block a user