From 798a9f2e78b8065600a227ee517656955bb66449 Mon Sep 17 00:00:00 2001
From: Franck Dary <franck.dary@lis-lab.fr>
Date: Fri, 12 Mar 2021 09:59:34 +0100
Subject: [PATCH] Using bare std::string instead of flyweight because it caused
 datarace in some computers

---
 common/include/util.hpp | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/common/include/util.hpp b/common/include/util.hpp
index 0a3f6fe..3b7b6eb 100644
--- a/common/include/util.hpp
+++ b/common/include/util.hpp
@@ -17,7 +17,8 @@
 
 namespace util
 {
-using String = boost::flyweights::flyweight<std::string,boost::flyweights::no_tracking>;
+//using String = boost::flyweights::flyweight<std::string,boost::flyweights::no_tracking>;
+using String = std::string;
 
 constexpr float float2longScale = 10000;
 
-- 
GitLab