Skip to content

Commit

Permalink
add missing include (for FTBFS with gcc-13)
Browse files Browse the repository at this point in the history
  • Loading branch information
ban-nobuhiro committed Apr 29, 2024
1 parent 1822f66 commit dd071bb
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 5 deletions.
4 changes: 3 additions & 1 deletion include/tateyama/datastore/service/core.h
@@ -1,5 +1,5 @@
/*
* Copyright 2018-2023 Project Tsurugi.
* Copyright 2018-2024 Project Tsurugi.
*
* 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,8 @@
*/
#pragma once

#include <cstdint>

#include <boost/filesystem/path.hpp>

#include <tateyama/api/configuration.h>
Expand Down
3 changes: 2 additions & 1 deletion include/tateyama/framework/boot_mode.h
@@ -1,5 +1,5 @@
/*
* Copyright 2018-2023 Project Tsurugi.
* Copyright 2018-2024 Project Tsurugi.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand All @@ -16,6 +16,7 @@
#pragma once

#include <string_view>
#include <cstdint>
#include <cstdlib>
#include <ostream>

Expand Down
3 changes: 2 additions & 1 deletion include/tateyama/framework/component.h
@@ -1,5 +1,5 @@
/*
* Copyright 2018-2023 Project Tsurugi.
* Copyright 2018-2024 Project Tsurugi.
*
* 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 <functional>
#include <memory>
#include <type_traits>
Expand Down
3 changes: 2 additions & 1 deletion include/tateyama/status.h
@@ -1,5 +1,5 @@
/*
* Copyright 2018-2023 Project Tsurugi.
* Copyright 2018-2024 Project Tsurugi.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand All @@ -16,6 +16,7 @@
#pragma once

#include <cstddef>
#include <cstdint>
#include <takatori/util/enum_set.h>

namespace tateyama {
Expand Down
3 changes: 2 additions & 1 deletion include/tateyama/status/resource/core.h
@@ -1,5 +1,5 @@
/*
* Copyright 2018-2023 Project Tsurugi.
* Copyright 2018-2024 Project Tsurugi.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand All @@ -18,6 +18,7 @@
#include <string_view>
#include <functional>
#include <csignal>
#include <cstdint>
#include <sys/types.h>
#include <unistd.h>

Expand Down

0 comments on commit dd071bb

Please sign in to comment.