~ruther/guix-local

cd469932758bf2bec1ff9c82aeb373e18730d0c4 — Sören Tempel 2 years ago 9aed82f
daemon: Fix build with GCC 13.

The sqlite.hh file uses fixed-width integer types from stdint.h. As
such, it needs to include <cstdint>. Without this include, the file
doesn't compile successfully with GCC13.

See: https://gcc.gnu.org/gcc-13/porting_to.html#header-dep-changes

* nix/libstore/sqlite.hh: include <cstdint>

Signed-off-by: Sören Tempel <soeren@soeren-tempel.net>
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
1 files changed, 1 insertions(+), 0 deletions(-)

M nix/libstore/sqlite.hh
M nix/libstore/sqlite.hh => nix/libstore/sqlite.hh +1 -0
@@ 2,6 2,7 @@

#include <functional>
#include <string>
#include <cstdint>

#include "types.hh"