Skip to content

Commit 327e269

Browse files
author
MarcoFalke
committed
Merge bitcoin/bitcoin#22309: blockstorage: Add missing atomic include
fa2d21f add missing atomic include (MarcoFalke) Pull request description: `std::atomic` is used in the file, so to avoid compile issues, add the missing include. ACKs for top commit: practicalswift: cr ACK fa2d21f jamesob: crACK bitcoin/bitcoin@fa2d21f hebasto: ACK fa2d21f, I have reviewed the code and it looks OK, I agree it can be merged. prayank23: crACK bitcoin/bitcoin@fa2d21f Tree-SHA512: 307b15abd62006be4457b2437fb65de517c296bf0417e8acd181904eb6056dba5655dd5bc43b834bf68a087d06637f5e99ba5a6bc8be3e12388cea470dc155d0
2 parents 672870a + fa2d21f commit 327e269

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

src/node/blockstorage.h

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,13 @@
55
#ifndef BITCOIN_NODE_BLOCKSTORAGE_H
66
#define BITCOIN_NODE_BLOCKSTORAGE_H
77

8-
#include <cstdint>
9-
#include <vector>
10-
118
#include <fs.h>
129
#include <protocol.h> // For CMessageHeader::MessageStartChars
1310

11+
#include <atomic>
12+
#include <cstdint>
13+
#include <vector>
14+
1415
class ArgsManager;
1516
class BlockValidationState;
1617
class CBlock;

0 commit comments

Comments
 (0)