From 3313f5588e9611a343dd58047be1806db81db319 Mon Sep 17 00:00:00 2001 From: Matthias Koefferlein Date: Wed, 23 Aug 2023 20:33:41 +0200 Subject: [PATCH] Trying to fix more Windows build issues --- src/db/db/dbPoint.cc | 9 +++++++++ src/db/db/dbVector.cc | 9 +++++++++ 2 files changed, 18 insertions(+) diff --git a/src/db/db/dbPoint.cc b/src/db/db/dbPoint.cc index 97641e812..468ae0da8 100644 --- a/src/db/db/dbPoint.cc +++ b/src/db/db/dbPoint.cc @@ -55,6 +55,15 @@ namespace { } +namespace db +{ + +// instantiations +template class point; +template class point; + +} + namespace tl { diff --git a/src/db/db/dbVector.cc b/src/db/db/dbVector.cc index 2ef408a5d..f401ba303 100644 --- a/src/db/db/dbVector.cc +++ b/src/db/db/dbVector.cc @@ -55,6 +55,15 @@ namespace { } +namespace db +{ + +// instantiations +template class vector; +template class vector; + +} + namespace tl {