From cb992c1c6d60d9c92855ba838f8aa61ea9d81da9 Mon Sep 17 00:00:00 2001 From: "Mark A. Tsuchida" Date: Tue, 5 Nov 2024 19:55:24 -0600 Subject: [PATCH] MMCore: work around SWIG 3 limitation --- MMCore/MMCore.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MMCore/MMCore.h b/MMCore/MMCore.h index 6889614e0..83d67b0b2 100644 --- a/MMCore/MMCore.h +++ b/MMCore/MMCore.h @@ -698,7 +698,7 @@ class CMMCore void loadSystemConfigurationImpl(const char* fileName) throw (CMMError); void initializeAllDevicesSerial() throw (CMMError); void initializeAllDevicesParallel() throw (CMMError); - int initializeVectorOfDevices(std::vector, std::string>> pDevices); + int initializeVectorOfDevices(std::vector, std::string> > pDevices); }; #if defined(__GNUC__) && !defined(__clang__)