Replaced tabs with spaces

This commit is contained in:
Benoit Steiner 2016-10-25 20:40:58 -07:00
parent 1644bafe29
commit 5f2dd503ff

View File

@ -18,8 +18,8 @@ namespace Eigen {
// T* m_data on the host. It is always called on the device. // T* m_data on the host. It is always called on the device.
// Specialisation of MakePointer class for creating the sycl buffer with // Specialisation of MakePointer class for creating the sycl buffer with
// map_allocator. // map_allocator.
template<class T> struct MakePointer{ template<typename T> struct MakePointer {
typedef T* Type; typedef T* Type;
}; };
template<typename PlainObjectType, int Options_ = Unaligned, template <class> class MakePointer_ = MakePointer> class TensorMap; template<typename PlainObjectType, int Options_ = Unaligned, template <class> class MakePointer_ = MakePointer> class TensorMap;