Add parentheses around condition in VTKM_STATIC_ASSERT_MSG

This is necessary for older compilers.
This commit is contained in:
Kenneth Moreland 2015-12-15 10:29:53 -07:00
parent ea69785009
commit 2e8873272d

@ -49,7 +49,7 @@ struct ListTagCheck
///
#define VTKM_IS_LIST_TAG(tag) \
VTKM_STATIC_ASSERT_MSG( \
::vtkm::internal::ListTagCheck<tag>::Valid, \
(::vtkm::internal::ListTagCheck<tag>::Valid), \
"Provided type is not a valid VTK-m list tag.")
namespace detail {