#include <lcl/ErrorCode.h>
#include <viskores/internal/ExportMacros.h>
Go to the source code of this file.
|
| viskores |
| Groups connected points that have the same field value.
|
|
|
enum | viskores::ErrorCode {
viskores::ErrorCode::Success,
viskores::ErrorCode::InvalidShapeId,
viskores::ErrorCode::InvalidNumberOfPoints,
viskores::ErrorCode::InvalidCellMetric,
viskores::ErrorCode::WrongShapeIdForTagType,
viskores::ErrorCode::InvalidPointId,
viskores::ErrorCode::InvalidEdgeId,
viskores::ErrorCode::InvalidFaceId,
viskores::ErrorCode::SolutionDidNotConverge,
viskores::ErrorCode::MatrixFactorizationFailed,
viskores::ErrorCode::DegenerateCellDetected,
viskores::ErrorCode::MalformedCellDetected,
viskores::ErrorCode::OperationOnEmptyCell,
viskores::ErrorCode::CellNotFound,
viskores::ErrorCode::UnknownError
} |
| Identifies whether an operation was successful or what type of error it had. More...
|
|
◆ VISKORES_RETURN_ON_ERROR
#define VISKORES_RETURN_ON_ERROR |
( |
|
call | ) |
|
Value: do \
{ \
auto status = (call); \
{ \
return status; \
} \
} while (false)