Skip to content

Commit

Permalink
fix(benchmark): add definition of static constexpr member variable
Browse files Browse the repository at this point in the history
prior to C++17, definition is necessary
fix facebookincubator#389
  • Loading branch information
e-kwsm committed Dec 6, 2024
1 parent dc507d1 commit c820fbb
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion gloo/rendezvous/store.cc
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@
* LICENSE file in the root directory of this source tree.
*/

#include "store.h"

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

0 comments on commit c820fbb

Please sign in to comment.