Skip to content

Commit c820fbb

Browse files
committed
fix(benchmark): add definition of static constexpr member variable
prior to C++17, definition is necessary fix #389
1 parent dc507d1 commit c820fbb

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

gloo/rendezvous/store.cc

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@
66
* LICENSE file in the root directory of this source tree.
77
*/
88

9+
#include "store.h"
10+
911
namespace gloo {
10-
namespace rendezvous {} // namespace rendezvous
12+
namespace rendezvous {
13+
constexpr std::chrono::milliseconds Store::kDefaultTimeout;
14+
} // namespace rendezvous
1115
} // namespace gloo

0 commit comments

Comments
 (0)