ErrorBadType should be a device independent exception

This commit is contained in:
Robert Maynard 2019-01-24 12:59:35 -05:00
parent 0365af01fd
commit 80b7f8f187

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