Skip to content

Commit efc8af5

Browse files
committed
fmt: allow version 9
The ostream operator wasn't actually used anywhere, so we're good to accept fmt 9
1 parent e270c02 commit efc8af5

File tree

9 files changed

+1
-9
lines changed

9 files changed

+1
-9
lines changed

gen/cpp/sym/util/type_ops.h

Lines changed: 0 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

symforce/opt/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ include(FetchContent)
1212
# ------------------------------------------------------------------------------
1313
# fmtlib
1414

15-
find_package(fmt 8...<9 QUIET)
15+
find_package(fmt 8...<10 QUIET)
1616
if (NOT fmt_FOUND)
1717
message(STATUS "fmt not found, adding with FetchContent")
1818
function(add_fmt)

symforce/opt/factor.cc

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
#include "./factor.h"
77

88
#include <fmt/format.h>
9-
#include <fmt/ostream.h>
109
#include <fmt/ranges.h>
1110

1211
#include "./assert.h"

symforce/opt/internal/tic_toc.cc

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
#include <algorithm>
99

1010
#include <fmt/format.h>
11-
#include <fmt/ostream.h>
1211
#include <spdlog/spdlog.h>
1312

1413
namespace sym {

symforce/opt/tic_toc.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@
3434

3535
#else // if !defined(SYMFORCE_TIC_TOC_HEADER)
3636
#include <fmt/format.h>
37-
#include <fmt/ostream.h>
3837

3938
#include "./internal/tic_toc.h"
4039

symforce/opt/values.cc

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
#include "./values.h"
77

88
#include <fmt/format.h>
9-
#include <fmt/ostream.h>
109

1110
#include "./assert.h"
1211

symforce/pybind/cc_factor.cc

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010

1111
#include <Eigen/Core>
1212
#include <fmt/format.h>
13-
#include <fmt/ostream.h>
1413
#include <pybind11/eigen.h>
1514
#include <pybind11/functional.h>
1615
#include <pybind11/pybind11.h>

symforce/pybind/cc_key.cc

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
#include "./cc_key.h"
77

88
#include <fmt/format.h>
9-
#include <fmt/ostream.h>
109

1110
#include <symforce/opt/key.h>
1211

symforce/pybind/cc_values.cc

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111

1212
#include <Eigen/Core>
1313
#include <fmt/format.h>
14-
#include <fmt/ostream.h>
1514
#include <pybind11/eigen.h>
1615
#include <pybind11/pybind11.h>
1716
#include <pybind11/stl.h>

0 commit comments

Comments
 (0)