Skip to content

Commit

Permalink
merge from eigen update commit b93f96 'Made the TensorStorage class c…
Browse files Browse the repository at this point in the history
…ompile with clang 3.9'
  • Loading branch information
liu946 committed Dec 20, 2017
1 parent 93b33d7 commit 254a375
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,12 @@ namespace Eigen {
*
* \sa Tensor
*/
template<typename T, typename Dimensions, int Options_> class TensorStorage;
template<typename T, typename Dimensions, int Options> class TensorStorage;


// Pure fixed-size storage
template<typename T, int Options_, typename FixedDimensions>
class TensorStorage<T, FixedDimensions, Options_>
template<typename T, typename FixedDimensions, int Options_>
class TensorStorage
{
private:
static const std::size_t Size = FixedDimensions::total_size;
Expand Down Expand Up @@ -66,7 +66,7 @@ class TensorStorage<T, FixedDimensions, Options_>


// pure dynamic
template<typename T, int Options_, typename IndexType, int NumIndices_>
template<typename T, typename IndexType, int NumIndices_, int Options_>
class TensorStorage<T, DSizes<IndexType, NumIndices_>, Options_>
{
public:
Expand Down

0 comments on commit 254a375

Please sign in to comment.