Skip to content
Snippets Groups Projects
Commit 798a9f2e authored by Franck Dary's avatar Franck Dary
Browse files

Using bare std::string instead of flyweight because it caused datarace in some computers

parent e1288dc4
No related branches found
No related tags found
No related merge requests found
......@@ -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;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment