1
1
Fork 0
mirror of https://github.com/NixOS/nix.git synced 2025-11-08 19:46:02 +01:00

Remove unecessary includes

This commit is contained in:
Farid Zakaria 2025-10-14 23:43:33 -04:00
parent 902faf4fe5
commit e8b126fa90
7 changed files with 17 additions and 23 deletions

View file

@ -1,8 +1,15 @@
#include <gtest/gtest.h>
#include <set>
#include <string>
#include <utility>
#include "nix/fetchers/fetch-settings.hh"
#include "nix/flake/flakeref.hh"
#include "nix/fetchers/attrs.hh"
#include "nix/fetchers/fetchers.hh"
#include "nix/util/configuration.hh"
#include "nix/util/error.hh"
#include "nix/util/experimental-features.hh"
namespace nix {

View file

@ -1,15 +1,17 @@
#include <gtest/gtest.h>
#include <filesystem>
#include <string>
#include "nix/util/file-system.hh"
#include "nix_api_store.h"
#include "nix_api_util.h"
#include "nix_api_expr.h"
#include "nix_api_value.h"
#include "nix_api_flake.h"
#include "nix/expr/tests/nix_api_expr.hh"
#include "nix/util/tests/string_callback.hh"
#include <gmock/gmock.h>
#include <gtest/gtest.h>
#include "nix/store/tests/nix_api_store.hh"
#include "nix/util/tests/nix_api_util.hh"
#include "nix_api_fetchers.h"
namespace nixC {

View file

@ -1,6 +1,8 @@
#include "nix/flake/url-name.hh"
#include <gtest/gtest.h>
#include "nix/flake/url-name.hh"
#include "nix/util/url.hh"
namespace nix {
/* ----------- tests for url-name.hh --------------------------------------------------*/

View file

@ -1,7 +1,6 @@
#pragma once
#include "nix/expr/eval.hh"
#include "nix/flake/settings.hh"
namespace nix {
namespace flake {

View file

@ -1,23 +1,14 @@
#pragma once
///@file
#include <boost/container/detail/std_fwd.hpp>
#include <regex>
#include <compare>
#include <iosfwd>
#include <optional>
#include <string>
#include <tuple>
#include <utility>
#include <variant>
#include "nix/util/types.hh"
#include "nix/fetchers/fetchers.hh"
#include "nix/store/outputs-spec.hh"
#include "nix/fetchers/registry.hh"
#include "nix/fetchers/attrs.hh"
#include "nix/util/ref.hh"
#include "nix/util/source-accessor.hh"
namespace nix {

View file

@ -2,11 +2,9 @@
///@file
#include <sys/types.h>
#include <optional>
#include <string>
#include "nix/util/configuration.hh"
#include "nix/util/experimental-features.hh"
namespace nix {
// Forward declarations

View file

@ -1,11 +1,6 @@
#include <optional>
#include <string>
#include "nix/util/url.hh"
#include "nix/util/url-parts.hh"
#include "nix/util/util.hh"
#include "nix/util/split.hh"
namespace nix {
struct ParsedURL;