1
1
Fork 0
mirror of https://github.com/NixOS/nix.git synced 2025-11-13 22:12:43 +01:00

Fix s3.hh to include public config header

The s3.hh public header was incorrectly including store-config-private.hh
instead of the public config.hh. Since NIX_WITH_S3_SUPPORT is defined in
the public config, this caused clang-tidy to report it as undefined.
This commit is contained in:
Jörg Thalheim 2025-07-17 12:38:21 +02:00
parent 6e733b0544
commit 4ba3b15a10

View file

@ -1,6 +1,6 @@
#pragma once
///@file
#include "store-config-private.hh"
#include "nix/store/config.hh"
#if NIX_WITH_S3_SUPPORT
#include "nix/util/ref.hh"