mirror of
https://github.com/ceres-solver/ceres-solver.git
synced 2026-08-29 16:40:38 +08:00
More C++ification.
"> >" -> ">>" "> > >" -> ">>>" Change-Id: Id1ddd9dbf030fe21d57207741b4ca8403068e55b
This commit is contained in:
@@ -112,8 +112,8 @@ class DynamicAutoDiffCostFunction : public DynamicCostFunction {
|
||||
0);
|
||||
|
||||
// Allocate scratch space for the strided evaluation.
|
||||
std::vector<Jet<double, Stride> > input_jets(num_parameters);
|
||||
std::vector<Jet<double, Stride> > output_jets(num_residuals());
|
||||
std::vector<Jet<double, Stride>> input_jets(num_parameters);
|
||||
std::vector<Jet<double, Stride>> output_jets(num_residuals());
|
||||
|
||||
// Make the parameter pack that is sent to the functor (reused).
|
||||
std::vector<Jet<double, Stride>* > jet_parameters(num_parameter_blocks,
|
||||
|
||||
Reference in New Issue
Block a user