commit | 85b2c418a6c20754e4b739d9249bbecaf315bcb8 | [log] [tgz] |
---|---|---|
author | Sameer Agarwal <sameeragarwal@google.com> | Tue Jan 23 09:16:36 2024 -0800 |
committer | Sameer Agarwal <sameeragarwal@google.com> | Tue Jan 23 09:16:36 2024 -0800 |
tree | b17d293555f1d10688622e13c9b58009d08f7b54 | |
parent | 91773746be74a58029f6ecfc0c82a3b22492ed12 [diff] |
ClangTidy fixes Change-Id: I127f50920ee1f1754b94763b5d3cb01a24aa28cb
diff --git a/internal/ceres/cost_function_to_functor_test.cc b/internal/ceres/cost_function_to_functor_test.cc index c3fed66..bc081f4 100644 --- a/internal/ceres/cost_function_to_functor_test.cc +++ b/internal/ceres/cost_function_to_functor_test.cc
@@ -32,6 +32,7 @@ #include <cstdint> #include <memory> +#include <utility> #include <vector> #include "ceres/autodiff_cost_function.h"
diff --git a/internal/ceres/dynamic_autodiff_cost_function_test.cc b/internal/ceres/dynamic_autodiff_cost_function_test.cc index d42b3e9..51366c6 100644 --- a/internal/ceres/dynamic_autodiff_cost_function_test.cc +++ b/internal/ceres/dynamic_autodiff_cost_function_test.cc
@@ -36,6 +36,7 @@ #include <memory> #include <vector> +#include "ceres/types.h" #include "gtest/gtest.h" namespace ceres::internal {
diff --git a/internal/ceres/dynamic_numeric_diff_cost_function_test.cc b/internal/ceres/dynamic_numeric_diff_cost_function_test.cc index 4f408ed..aec7819 100644 --- a/internal/ceres/dynamic_numeric_diff_cost_function_test.cc +++ b/internal/ceres/dynamic_numeric_diff_cost_function_test.cc
@@ -35,6 +35,8 @@ #include <memory> #include <vector> +#include "ceres/numeric_diff_options.h" +#include "ceres/types.h" #include "gtest/gtest.h" namespace ceres::internal {
diff --git a/internal/ceres/jet_test.cc b/internal/ceres/jet_test.cc index a920799..7f67bd6 100644 --- a/internal/ceres/jet_test.cc +++ b/internal/ceres/jet_test.cc
@@ -34,7 +34,6 @@ #include <algorithm> #include <cfenv> #include <cmath> -#include <stdexcept> #include "ceres/stringprintf.h" #include "ceres/test_util.h"