1234567891011121314151617181920212223 |
- // -*- C++ -*-
- //===----------------------------------------------------------------------===//
- //
- // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
- // See https://llvm.org/LICENSE.txt for license information.
- // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
- //
- //===----------------------------------------------------------------------===//
- // <thread>
- // template <class Rep, class Period>
- // void sleep_for(const chrono::duration<Rep, Period>& rel_time);
- // The std::this_thread::sleep_for test requires POSIX specific headers and
- // is therefore non-standard. For this reason the test lives under the 'libcxx'
- // subdirectory.
- int main(int, char**)
- {
- return 0;
- }
|