Check that it's possible to forward declare the hlaf type.

This commit is contained in:
Benoit Steiner 2016-08-03 16:07:31 -07:00
parent 17b9a55d98
commit 373bb12dc6

View File

@ -11,6 +11,11 @@
#include <Eigen/src/Core/arch/CUDA/Half.h>
// Make sure it's possible to forward declare Eigen::half
namespace Eigen {
struct half;
}
using Eigen::half;
void test_conversion()