From 263c540cd0805ba047bdb60681dfe1fe6a4e08f3 Mon Sep 17 00:00:00 2001 From: Sebastian Messmer Date: Wed, 22 Jun 2016 11:25:28 -0700 Subject: [PATCH] Make sure, ClientIdAndBlockKey.h includes all its dependencies --- src/blockstore/CMakeLists.txt | 1 + .../implementations/versioncounting/ClientIdAndBlockKey.cpp | 1 + .../implementations/versioncounting/ClientIdAndBlockKey.h | 1 + 3 files changed, 3 insertions(+) create mode 100644 src/blockstore/implementations/versioncounting/ClientIdAndBlockKey.cpp diff --git a/src/blockstore/CMakeLists.txt b/src/blockstore/CMakeLists.txt index 7395cafd..5f130b19 100644 --- a/src/blockstore/CMakeLists.txt +++ b/src/blockstore/CMakeLists.txt @@ -30,6 +30,7 @@ set(SOURCES implementations/versioncounting/VersionCountingBlock.cpp implementations/versioncounting/VersionCountingBlockStore.cpp implementations/versioncounting/KnownBlockVersions.cpp + implementations/versioncounting/ClientIdAndBlockKey.cpp ) add_library(${PROJECT_NAME} STATIC ${SOURCES}) diff --git a/src/blockstore/implementations/versioncounting/ClientIdAndBlockKey.cpp b/src/blockstore/implementations/versioncounting/ClientIdAndBlockKey.cpp new file mode 100644 index 00000000..00f00d4c --- /dev/null +++ b/src/blockstore/implementations/versioncounting/ClientIdAndBlockKey.cpp @@ -0,0 +1 @@ +#include "ClientIdAndBlockKey.h" \ No newline at end of file diff --git a/src/blockstore/implementations/versioncounting/ClientIdAndBlockKey.h b/src/blockstore/implementations/versioncounting/ClientIdAndBlockKey.h index aa83ca18..45d49c30 100644 --- a/src/blockstore/implementations/versioncounting/ClientIdAndBlockKey.h +++ b/src/blockstore/implementations/versioncounting/ClientIdAndBlockKey.h @@ -3,6 +3,7 @@ #define MESSMER_BLOCKSTORE_IMPLEMENTATIONS_VERSIONCOUNTING_CLIENTIDANDBLOCKKEY_H_ #include +#include "../../utils/Key.h" namespace blockstore { namespace versioncounting {