2
0
mirror of https://github.com/boostorg/compat.git synced 2026-01-19 04:02:16 +00:00

Add stub latch_test.cpp

This commit is contained in:
Peter Dimov
2023-05-14 01:09:13 +03:00
parent ec8c9df16a
commit cf06d842e2
2 changed files with 13 additions and 0 deletions

View File

@@ -21,3 +21,5 @@ project
;
run quick.cpp ;
run latch_test.cpp ;

11
test/latch_test.cpp Normal file
View File

@@ -0,0 +1,11 @@
// Copyright 2023 Peter Dimov.
// Distributed under the Boost Software License, Version 1.0.
// https://www.boost.org/LICENSE_1_0.txt
#include <boost/compat/latch.hpp>
#include <boost/core/lightweight_test.hpp>
int main()
{
return boost::report_errors();
}