Skip to content

Commit

Permalink
Merge pull request #146 from project-tsurugi/gcc-13
Browse files Browse the repository at this point in the history
add missing include (for FTBFS with gcc-13)
  • Loading branch information
ban-nobuhiro authored May 8, 2024
2 parents 6d068c7 + d72e448 commit 1824225
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 1 deletion.
3 changes: 2 additions & 1 deletion include/shirakami/binary_printer.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2018-2020 tsurugi project.
* Copyright 2018-2024 tsurugi project.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand All @@ -15,6 +15,7 @@
*/
#pragma once

#include <cstdint>
#include <iomanip>

namespace shirakami {
Expand Down
1 change: 1 addition & 0 deletions include/shirakami/database_options.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#pragma once

#include <cstdint>
#include <filesystem>

namespace shirakami {
Expand Down
1 change: 1 addition & 0 deletions include/shirakami/scheme.h
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
#include <algorithm>
#include <cassert>
#include <cerrno>
#include <cstdint>
#include <cstdio>
#include <cstdlib>
#include <cstring>
Expand Down
2 changes: 2 additions & 0 deletions include/shirakami/tx_id.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
#pragma once

#include <cstdint>

namespace shirakami {

/**
Expand Down

0 comments on commit 1824225

Please sign in to comment.