Skip to content

Commit 727348d

Browse files
committed
[src] using Index = std::ptrdiff_t; (default Eigen type)
1 parent ce38806 commit 727348d

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

src/core/tools/codac2_Index.h

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,10 @@
88
*/
99

1010
#pragma once
11+
#include <cstddef>
1112

1213
namespace codac2
1314
{
14-
using Index = Eigen::Index;
15+
// The Index type is the same as for Eigen
16+
using Index = std::ptrdiff_t;
1517
}

0 commit comments

Comments
 (0)