Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cmake_integration_test/common/test_app.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#include <libenvpp/env.hpp>

#include <fmt/core.h>
#include <fmt/format.h>

int main()
{
Expand Down
2 changes: 1 addition & 1 deletion include/libenvpp/detail/check.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#include <string>
#include <string_view>

#include <fmt/core.h>
#include <fmt/format.h>

#ifndef LIBENVPP_STRINGIFY
#define LIBENVPP_STRINGIFY_HELPER(expression) #expression
Expand Down
2 changes: 1 addition & 1 deletion include/libenvpp/detail/parser.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
#include <type_traits>
#include <utility>

#include <fmt/core.h>
#include <fmt/format.h>

#include <libenvpp/detail/errors.hpp>
#include <libenvpp/detail/expected.hpp>
Expand Down
2 changes: 1 addition & 1 deletion include/libenvpp/env.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
#include <utility>
#include <vector>

#include <fmt/core.h>
#include <fmt/format.h>
#include <fmt/ranges.h>

#include <libenvpp/detail/edit_distance.hpp>
Expand Down
2 changes: 1 addition & 1 deletion source/libenvpp_errors.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#include <libenvpp/detail/errors.hpp>

#include <fmt/core.h>
#include <fmt/format.h>

#include <libenvpp/detail/environment.hpp>

Expand Down
2 changes: 1 addition & 1 deletion source/libenvpp_testing.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#include <libenvpp/detail/testing.hpp>

#include <fmt/core.h>
#include <fmt/format.h>

#include <libenvpp/detail/errors.hpp>

Expand Down
2 changes: 1 addition & 1 deletion test/libenvpp_parser_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

#include <catch2/catch_test_macros.hpp>
#include <catch2/matchers/catch_matchers_string.hpp>
#include <fmt/core.h>
#include <fmt/format.h>

#include <libenvpp/detail/parser.hpp>

Expand Down
2 changes: 1 addition & 1 deletion test/libenvpp_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
#include <catch2/catch_test_macros.hpp>
#include <catch2/generators/catch_generators.hpp>
#include <catch2/matchers/catch_matchers_all.hpp>
#include <fmt/core.h>
#include <fmt/format.h>

#include <libenvpp/detail/environment.hpp>
#include <libenvpp/env.hpp>
Expand Down
2 changes: 1 addition & 1 deletion test/libenvpp_testing_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

#include <catch2/catch_test_macros.hpp>
#include <catch2/matchers/catch_matchers_all.hpp>
#include <fmt/core.h>
#include <fmt/format.h>

#include <libenvpp/detail/environment.hpp>
#include <libenvpp/env.hpp>
Expand Down
Loading