Merge topic 'ErrorBadType_IsDeviceIndependent'

80b7f8f18 ErrorBadType should be a device independent exception

Acked-by: Kitware Robot <kwrobot@kitware.com>
Acked-by: Kenneth Moreland <kmorel@sandia.gov>
Merge-request: !1524
This commit is contained in:
Robert Maynard 2019-01-24 19:43:01 +00:00 committed by Kitware Robot
commit 223a711f2b

@ -36,7 +36,7 @@ class VTKM_ALWAYS_EXPORT ErrorBadType : public Error
{
public:
ErrorBadType(const std::string& message)
: Error(message)
: Error(message, true)
{
}
};