]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - Vc/include/Vc/common/logarithm.h
Vc: update to 0.7.4 release
[u/mrichter/AliRoot.git] / Vc / include / Vc / common / logarithm.h
index 642081d70c9c381923a0f54d610f610be8030288..4f9caf3b7130e7e98ae45f2fc80b07d4e5a07332 100644 (file)
@@ -252,18 +252,12 @@ struct LogImpl
 };
 
 template<typename T> static Vc_ALWAYS_INLINE Vc_CONST Vector<T> log(VC_ALIGNED_PARAMETER(Vector<T>) x) {
-    typedef typename Vector<T>::Mask M;
-    typedef Const<T> C;
     return LogImpl<BaseE>::calc(x);
 }
 template<typename T> static Vc_ALWAYS_INLINE Vc_CONST Vector<T> log10(VC_ALIGNED_PARAMETER(Vector<T>) x) {
-    typedef typename Vector<T>::Mask M;
-    typedef Const<T> C;
     return LogImpl<Base10>::calc(x);
 }
 template<typename T> static Vc_ALWAYS_INLINE Vc_CONST Vector<T> log2(VC_ALIGNED_PARAMETER(Vector<T>) x) {
-    typedef typename Vector<T>::Mask M;
-    typedef Const<T> C;
     return LogImpl<Base2>::calc(x);
 }
 } // namespace Common