[NFC][Py Reformat] Added more commits to .git-blame-ignore-revs
[llvm-project.git] / libc / src / __support / error_or.h
blob7d1f82aeb2e0111b0b5e16658d3438ee03e3f723
1 //===-- A data structure for returning an error or a value ------*- C++ -*-===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
9 #ifndef LLVM_LIBC_SUPPORT_ERROR_OR_RESULT_H
10 #define LLVM_LIBC_SUPPORT_ERROR_OR_RESULT_H
12 #include "src/__support/CPP/expected.h"
14 namespace __llvm_libc {
16 template <class T> using ErrorOr = cpp::expected<T, int>;
18 using Error = cpp::unexpected<int>;
20 // template <typename T> struct ErrorOr {
21 // union {
22 // T value;
23 // int error;
24 // };
25 // bool is_error;
27 // constexpr ErrorOr(T value) : value(value), is_error(false) {}
28 // constexpr ErrorOr(int error, bool is_error)
29 // : error(error), is_error(is_error) {}
31 // constexpr bool has_error() { return is_error; }
33 // constexpr operator bool() { return is_error; }
34 // constexpr operator T() { return value; }
35 // };
37 } // namespace __llvm_libc
39 #endif // LLVM_LIBC_SUPPORT_ERROR_OR_RESULT_H