Added missing include. MSVC complained about not finding std::min(), Change-Id: If0a1eb77fa2988cabf26da4a49bf018e34a38b9c
diff --git a/internal/ceres/summary_utils.cc b/internal/ceres/summary_utils.cc index 29e272e..243030c 100644 --- a/internal/ceres/summary_utils.cc +++ b/internal/ceres/summary_utils.cc
@@ -28,6 +28,7 @@ // // Author: sameeragarwal@google.com (Sameer Agarwal) +#include <algorithm> #include "ceres/summary_utils.h" #include "ceres/program.h" #include "ceres/solver.h"