Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions gloo/common/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ set(GLOO_COMMON_HDRS
"${CMAKE_CURRENT_SOURCE_DIR}/common.h"
"${CMAKE_CURRENT_SOURCE_DIR}/error.h"
"${CMAKE_CURRENT_SOURCE_DIR}/logging.h"
"${CMAKE_CURRENT_SOURCE_DIR}/memory.h"
"${CMAKE_CURRENT_SOURCE_DIR}/store.h"
"${CMAKE_CURRENT_SOURCE_DIR}/string.h"
"${CMAKE_CURRENT_SOURCE_DIR}/utils.h"
Expand Down
2 changes: 2 additions & 0 deletions gloo/rendezvous/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ set(GLOO_RENDEZVOUS_SRCS
"${CMAKE_CURRENT_SOURCE_DIR}/file_store.cc"
"${CMAKE_CURRENT_SOURCE_DIR}/hash_store.cc"
"${CMAKE_CURRENT_SOURCE_DIR}/prefix_store.cc"
"${CMAKE_CURRENT_SOURCE_DIR}/tcp_store.cc"
"${CMAKE_CURRENT_SOURCE_DIR}/store.cc"
"${CMAKE_CURRENT_SOURCE_DIR}/context.cc"
)
Expand All @@ -11,6 +12,7 @@ set(GLOO_RENDEZVOUS_HDRS
"${CMAKE_CURRENT_SOURCE_DIR}/file_store.h"
"${CMAKE_CURRENT_SOURCE_DIR}/hash_store.h"
"${CMAKE_CURRENT_SOURCE_DIR}/prefix_store.h"
"${CMAKE_CURRENT_SOURCE_DIR}/tcp_store.h"
"${CMAKE_CURRENT_SOURCE_DIR}/store.h"
"${CMAKE_CURRENT_SOURCE_DIR}/context.h"
)
Expand Down
10 changes: 8 additions & 2 deletions gloo/rendezvous/store.cc
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@
* LICENSE file in the root directory of this source tree.
*/

namespace gloo {
namespace rendezvous {} // namespace rendezvous
#include <gloo/rendezvous/store.h>

namespace gloo
{
namespace rendezvous
{
constexpr std::chrono::milliseconds Store::kDefaultTimeout;
} // namespace rendezvous
} // namespace gloo
Loading