From c0352197a1fc8ceb2de5385c7f6d259eabe7a9c9 Mon Sep 17 00:00:00 2001 From: Gael Guennebaud Date: Sat, 31 Oct 2015 18:06:28 +0100 Subject: [PATCH] bug #1099: add missing incude for CUDA --- Eigen/src/Core/util/Meta.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Eigen/src/Core/util/Meta.h b/Eigen/src/Core/util/Meta.h index ef35cefb4..a7e7555e9 100644 --- a/Eigen/src/Core/util/Meta.h +++ b/Eigen/src/Core/util/Meta.h @@ -1,7 +1,7 @@ // This file is part of Eigen, a lightweight C++ template library // for linear algebra. // -// Copyright (C) 2008-2009 Gael Guennebaud +// Copyright (C) 2008-2015 Gael Guennebaud // Copyright (C) 2006-2008 Benoit Jacob // // This Source Code Form is subject to the terms of the Mozilla @@ -13,6 +13,7 @@ #if defined(__CUDA_ARCH__) #include +#include #endif namespace Eigen {