|
LLVM
8.0.1
|
Subclass of Error for the sole purpose of identifying the success path in the type system. More...
#include "llvm/Support/Error.h"


Additional Inherited Members | |
Public Member Functions inherited from llvm::Error | |
| Error (const Error &Other)=delete | |
| Error (Error &&Other) | |
| Move-construct an error value. More... | |
| Error (std::unique_ptr< ErrorInfoBase > Payload) | |
| Create an error value. More... | |
| Error & | operator= (const Error &Other)=delete |
| Error & | operator= (Error &&Other) |
| Move-assign an error value. More... | |
| ~Error () | |
| Destroy a Error. More... | |
| operator bool () | |
| Bool conversion. More... | |
| template<typename ErrT > | |
| bool | isA () const |
| Check whether one error is a subclass of another. More... | |
| const void * | dynamicClassID () const |
| Returns the dynamic class id of this error, or null if this is a success value. More... | |
Static Public Member Functions inherited from llvm::Error | |
| static ErrorSuccess | success () |
| Create a success value. More... | |
Protected Member Functions inherited from llvm::Error | |
| Error () | |
| Create a success value. Prefer using 'Error::success()' for readability. More... | |
Subclass of Error for the sole purpose of identifying the success path in the type system.
This allows to catch invalid conversion to Expected<T> at compile time.
1.8.13