From fe7d2f4c772f0eae6de64408d2ce0c8449065e25 Mon Sep 17 00:00:00 2001
From: Simon Heybrock <simon.heybrock@esss.se>
Date: Wed, 2 Nov 2016 07:05:27 +0100
Subject: [PATCH] Re #17918. Trying to fix explicit VMDBase instantiation.

---
 Framework/Kernel/src/VMD.cpp | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/Framework/Kernel/src/VMD.cpp b/Framework/Kernel/src/VMD.cpp
index f9087bf79bb..583647930e2 100644
--- a/Framework/Kernel/src/VMD.cpp
+++ b/Framework/Kernel/src/VMD.cpp
@@ -594,8 +594,7 @@ VMDBase<TYPE>::getNormalVector(const std::vector<VMDBase<TYPE>> &vectors) {
 /// Instantiate VMDBase classes
 template class VMDBase<double>;
 template class VMDBase<float>;
-template VMDBase<float>::VMDBase<double>(
-    std::vector<double, std::allocator<double>> const &);
+template VMDBase<float>::VMDBase(const std::vector<double> &);
 
 /**
   Prints a text representation of itself
-- 
GitLab