From 237eb17bddcb89a7fa088ef87c374bd24e8a4ab9 Mon Sep 17 00:00:00 2001 From: Rodrigo Queiro Date: Fri, 12 Jan 2018 10:43:18 +0100 Subject: [PATCH] Consistently use quotes to include Eigen This makes these files match the convention in the rest of the codebase. Change-Id: I3a0634274e0e604c575dd3c78fa87f485770e7ff --- examples/nist.cc | 2 +- include/ceres/tiny_solver_autodiff_function.h | 2 +- include/ceres/tiny_solver_cost_function_adapter.h | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/examples/nist.cc b/examples/nist.cc index 5bd100321..8ce72915e 100644 --- a/examples/nist.cc +++ b/examples/nist.cc @@ -71,11 +71,11 @@ // Average LRE 2.3 4.3 4.0 6.8 4.4 9.4 // Winner 0 0 5 11 2 41 -#include #include #include #include +#include "Eigen/Core" #include "ceres/ceres.h" #include "ceres/tiny_solver.h" #include "ceres/tiny_solver_cost_function_adapter.h" diff --git a/include/ceres/tiny_solver_autodiff_function.h b/include/ceres/tiny_solver_autodiff_function.h index 0e9114235..6bdb2acef 100644 --- a/include/ceres/tiny_solver_autodiff_function.h +++ b/include/ceres/tiny_solver_autodiff_function.h @@ -35,7 +35,7 @@ #ifndef CERES_PUBLIC_TINY_SOLVER_AUTODIFF_FUNCTION_H_ #define CERES_PUBLIC_TINY_SOLVER_AUTODIFF_FUNCTION_H_ -#include +#include "Eigen/Core" #include "ceres/jet.h" #include "ceres/types.h" // For kImpossibleValue. diff --git a/include/ceres/tiny_solver_cost_function_adapter.h b/include/ceres/tiny_solver_cost_function_adapter.h index d8599e42b..e3217d077 100644 --- a/include/ceres/tiny_solver_cost_function_adapter.h +++ b/include/ceres/tiny_solver_cost_function_adapter.h @@ -32,7 +32,7 @@ #ifndef CERES_PUBLIC_TINY_SOLVER_COST_FUNCTION_ADAPTER_H_ #define CERES_PUBLIC_TINY_SOLVER_COST_FUNCTION_ADAPTER_H_ -#include +#include "Eigen/Core" #include "ceres/cost_function.h" #include "glog/logging.h"