From cd48254a879085557390f731850cd4924e9495b0 Mon Sep 17 00:00:00 2001 From: Gael Guennebaud Date: Tue, 12 Jun 2012 11:40:33 +0200 Subject: [PATCH] fix inclusion order --- Eigen/Core | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Eigen/Core b/Eigen/Core index 5e93d6b73..a8a15c053 100644 --- a/Eigen/Core +++ b/Eigen/Core @@ -329,12 +329,12 @@ using std::ptrdiff_t; #include "src/Core/GeneralProduct.h" #include "src/Core/TriangularMatrix.h" #include "src/Core/SelfAdjointView.h" -#include "src/Core/SolveTriangular.h" #include "src/Core/products/Parallelizer.h" #include "src/Core/products/CoeffBasedProduct.h" #include "src/Core/products/GeneralBlockPanelKernel.h" #include "src/Core/products/GeneralMatrixVector.h" #include "src/Core/products/GeneralMatrixMatrix.h" +#include "src/Core/SolveTriangular.h" #include "src/Core/products/GeneralMatrixMatrixTriangular.h" #include "src/Core/products/SelfadjointMatrixVector.h" #include "src/Core/products/SelfadjointMatrixMatrix.h"