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

References

include/llvm/Support/MSVCErrorWorkarounds.h
   43 template <typename T> class MSVCPExpected : public Expected<T> {
   46       : Expected<T>(make_error<StringError>("", inconvertibleErrorCode())) {
   50   MSVCPExpected(MSVCPExpected &&Other) : Expected<T>(std::move(Other)) {}
   53     Expected<T>::operator=(std::move(Other));
   57   MSVCPExpected(Error Err) : Expected<T>(std::move(Err)) {}
   64       : Expected<T>(std::move(Val)) {}
   71       : Expected<T>(std::move(Other)) {}
   78       : Expected<T>(std::move(Other)) {}