2010-08-25 19:32:05 +02:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2010-11-16 23:09:02 +01:00
|
|
|
// This file is dual licensed under the MIT and the University of Illinois Open
|
|
|
|
// Source Licenses. See LICENSE.TXT for details.
|
2010-08-25 19:32:05 +02:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
// <future>
|
|
|
|
|
|
|
|
// const error_category& future_category();
|
|
|
|
|
|
|
|
// virtual error_condition default_error_condition(int ev) const;
|
|
|
|
|
|
|
|
#include <future>
|
|
|
|
#include <cassert>
|
|
|
|
|
|
|
|
int main()
|
|
|
|
{
|
|
|
|
const std::error_category& e_cat = std::future_category();
|
2011-12-02 20:36:40 +01:00
|
|
|
std::error_condition e_cond = e_cat.default_error_condition(static_cast<int>(std::errc::not_a_directory));
|
2010-08-25 19:32:05 +02:00
|
|
|
assert(e_cond.category() == e_cat);
|
2011-12-02 20:36:40 +01:00
|
|
|
assert(e_cond.value() == static_cast<int>(std::errc::not_a_directory));
|
2010-08-25 19:32:05 +02:00
|
|
|
}
|