aboutsummaryrefslogtreecommitdiff
path: root/src/Eigen/StdDeque
diff options
context:
space:
mode:
authorPeter Carbonetto2017-05-27 16:07:07 -0500
committerPeter Carbonetto2017-05-27 16:07:07 -0500
commit338bf7b7db8805515597d9e2d4b5dcbe2e40dfd1 (patch)
treeee0956354916c7795a5c2b656c4ff5405f09271f /src/Eigen/StdDeque
parent94b4437dba1bd0e2767a73d0b79c5da9f393a1e3 (diff)
downloadpangemma-338bf7b7db8805515597d9e2d4b5dcbe2e40dfd1.tar.gz
Removed src/Eigen; instead, Eigen C++ library is downloaded separately. See Issue #42 for tests performed.
Diffstat (limited to 'src/Eigen/StdDeque')
-rw-r--r--src/Eigen/StdDeque27
1 files changed, 0 insertions, 27 deletions
diff --git a/src/Eigen/StdDeque b/src/Eigen/StdDeque
deleted file mode 100644
index f272347..0000000
--- a/src/Eigen/StdDeque
+++ /dev/null
@@ -1,27 +0,0 @@
-// This file is part of Eigen, a lightweight C++ template library
-// for linear algebra.
-//
-// Copyright (C) 2009 Gael Guennebaud <gael.guennebaud@inria.fr>
-// Copyright (C) 2009 Hauke Heibel <hauke.heibel@googlemail.com>
-//
-// This Source Code Form is subject to the terms of the Mozilla
-// Public License v. 2.0. If a copy of the MPL was not distributed
-// with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
-
-#ifndef EIGEN_STDDEQUE_MODULE_H
-#define EIGEN_STDDEQUE_MODULE_H
-
-#include "Core"
-#include <deque>
-
-#if (defined(_MSC_VER) && defined(_WIN64)) /* MSVC auto aligns in 64 bit builds */
-
-#define EIGEN_DEFINE_STL_DEQUE_SPECIALIZATION(...)
-
-#else
-
-#include "src/StlSupport/StdDeque.h"
-
-#endif
-
-#endif // EIGEN_STDDEQUE_MODULE_H