Skip to content

Commit

Permalink
missing std includes
Browse files Browse the repository at this point in the history
  • Loading branch information
lperron committed Nov 24, 2024
1 parent df4f4e8 commit 7444610
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 0 deletions.
1 change: 1 addition & 0 deletions ortools/graph/christofides.h
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@

#include <cstdint>
#include <functional>
#include <string>
#include <type_traits>
#include <utility>
#include <vector>
Expand Down
1 change: 1 addition & 0 deletions ortools/graph/cliques.h
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
#include <limits>
#include <numeric>
#include <string>
#include <utility>
#include <vector>

#include "absl/strings/str_cat.h"
Expand Down
1 change: 1 addition & 0 deletions ortools/routing/lp_scheduling.cc
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
#include <cstdlib>
#include <functional>
#include <limits>
#include <memory>
#include <numeric>
#include <optional>
#include <string>
Expand Down
2 changes: 2 additions & 0 deletions ortools/routing/parsers/cvrptw_lib.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@
#include <functional>
#include <memory>
#include <random>
#include <string>
#include <vector>

#include "ortools/base/strong_vector.h"
#include "ortools/routing/routing.h"
Expand Down
1 change: 1 addition & 0 deletions ortools/routing/python/model.cc
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
#include <functional>
#include <iterator>
#include <utility>
#include <vector>

#include "ortools/constraint_solver/constraint_solver.h"
#include "ortools/constraint_solver/solver_parameters.pb.h"
Expand Down

0 comments on commit 7444610

Please sign in to comment.