diff OrthancServer/Sources/ServerJobs/ArchiveJob.cpp @ 4814:46bfa3a4fd63

fix compatibility with LSB compiler
author Sebastien Jodogne <s.jodogne@gmail.com>
date Wed, 24 Nov 2021 18:03:35 +0100
parents 7afbb54bd028
children 58637d39ce88
line wrap: on
line diff
--- a/OrthancServer/Sources/ServerJobs/ArchiveJob.cpp	Wed Nov 24 17:38:36 2021 +0100
+++ b/OrthancServer/Sources/ServerJobs/ArchiveJob.cpp	Wed Nov 24 18:03:35 2021 +0100
@@ -149,7 +149,7 @@
   class ArchiveJob::ThreadedInstanceLoader : public ArchiveJob::InstanceLoader
   {
     Semaphore                           availableInstancesSemaphore_;
-    std::map<std::string, boost::shared_ptr<std::string>>  availableInstances_;
+    std::map<std::string, boost::shared_ptr<std::string> >  availableInstances_;
     boost::mutex                        availableInstancesMutex_;
     SharedMessageQueue                  instancesToPreload_;
     std::vector<boost::thread*>         threads_;