]> git.mxchange.org Git - simgear.git/blobdiff - simgear/math/SGVec4.hxx
Remove fastmath funktions like discussed on the list.
[simgear.git] / simgear / math / SGVec4.hxx
index 9df380d78698eaaf8f4446f73a0382e04b86d5a1..feee964b4b5b57b68915e1be74db7f289a20ceef 100644 (file)
@@ -280,10 +280,6 @@ std::basic_ostream<char_type, traits_type>&
 operator<<(std::basic_ostream<char_type, traits_type>& s, const SGVec4<T>& v)
 { return s << "[ " << v(0) << ", " << v(1) << ", " << v(2) << ", " << v(3) << " ]"; }
 
-/// Two classes doing actually the same on different types
-typedef SGVec4<float> SGVec4f;
-typedef SGVec4<double> SGVec4d;
-
 inline
 SGVec4f
 toVec4f(const SGVec4d& v)