reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

include/llvm/Support/Error.h
  330 template <typename ErrT, typename... ArgTs> Error make_error(ArgTs &&... Args) {
  331   return Error(std::make_unique<ErrT>(std::forward<ArgTs>(Args)...));
unittests/Support/ErrorTest.cpp
  926 inline std::error_code make_error_code(test_error_code E) {
  933     TestDebugError(const Twine &S) : ErrorInfo(S, test_error_code::unspecified) {}
  942     case test_error_code::unspecified:
  944     case test_error_code::error_1:
  946     case test_error_code::error_2:
  959   auto E1 = make_error<TestDebugError>(test_error_code::error_1);
  962   auto E2 = make_error<TestDebugError>(test_error_code::error_1,
  967   auto E3 = make_error<TestDebugError>(test_error_code::error_2);
  972   auto E4 = joinErrors(make_error<TestDebugError>(test_error_code::error_1,
  974                        make_error<TestDebugError>(test_error_code::error_2));
usr/include/c++/7.4.0/bits/move.h
   72     constexpr _Tp&&
   73     forward(typename std::remove_reference<_Tp>::type& __t) noexcept
   83     constexpr _Tp&&
   84     forward(typename std::remove_reference<_Tp>::type&& __t) noexcept
usr/include/c++/7.4.0/bits/unique_ptr.h
  824     make_unique(_Args&&... __args)
  825     { return unique_ptr<_Tp>(new _Tp(std::forward<_Args>(__args)...)); }
usr/include/c++/7.4.0/system_error
  156       error_code(_ErrorCodeEnum __e) noexcept
usr/include/c++/7.4.0/type_traits
 1629     { typedef _Tp   type; };