LLVM  8.0.1
Public Member Functions | Static Public Member Functions | List of all members
llvm::ErrorInfo< ThisErrT, ParentErrT > Class Template Reference

Base class for user error types. More...

#include "llvm/Support/Error.h"

Inheritance diagram for llvm::ErrorInfo< ThisErrT, ParentErrT >:
Inheritance graph
[legend]
Collaboration diagram for llvm::ErrorInfo< ThisErrT, ParentErrT >:
Collaboration graph
[legend]

Public Member Functions

const void * dynamicClassID () const override
 
bool isA (const void *const ClassID) const override
 

Static Public Member Functions

static const void * classID ()
 

Detailed Description

template<typename ThisErrT, typename ParentErrT = ErrorInfoBase>
class llvm::ErrorInfo< ThisErrT, ParentErrT >

Base class for user error types.

Users should declare their error types like:

class MyError : public ErrorInfo<MyError> { .... };

This class provides an implementation of the ErrorInfoBase::kind method, which is used by the Error RTTI system.

Definition at line 345 of file Error.h.

Member Function Documentation

◆ classID()

template<typename ThisErrT, typename ParentErrT = ErrorInfoBase>
static const void* llvm::ErrorInfo< ThisErrT, ParentErrT >::classID ( )
inlinestatic

Definition at line 349 of file Error.h.

◆ dynamicClassID()

template<typename ThisErrT, typename ParentErrT = ErrorInfoBase>
const void* llvm::ErrorInfo< ThisErrT, ParentErrT >::dynamicClassID ( ) const
inlineoverride

◆ isA()

template<typename ThisErrT, typename ParentErrT = ErrorInfoBase>
bool llvm::ErrorInfo< ThisErrT, ParentErrT >::isA ( const void *const  ClassID) const
inlineoverride

The documentation for this class was generated from the following file: