remove ExtractFilePath() ExtractFileBase() ExtractFileExtension()

This commit is contained in:
Garux
2021-10-04 11:34:15 +03:00
parent 82d038f6d1
commit 3960adf898
5 changed files with 14 additions and 41 deletions

View File

@@ -256,7 +256,7 @@ inline TextOutputStreamType& ostream_write( TextOutputStreamType& outputStream,
template<typename TextOutputStreamType>
TextOutputStreamType& ostream_write( TextOutputStreamType& t, const Vector4& v ){
return t << "[ " << v.x() << " " << v.y() << " " << v.z() << " " << v.w() << " ]";
return t << "[ " << v.x() << ' ' << v.y() << ' ' << v.z() << ' ' << v.w() << " ]";
}

View File

@@ -1167,7 +1167,7 @@ inline void matrix4_pivoted_transform_by_euler_xyz_degrees( Matrix4& self, const
template<typename TextOutputStreamType>
inline TextOutputStreamType& ostream_write( TextOutputStreamType& ostream, const Matrix4& m ){
return ostream << m.x() << " " << m.y() << " " << m.z() << " " << m.t();
return ostream << m.x() << ' ' << m.y() << ' ' << m.z() << ' ' << m.t();
}
#endif