annotate OrthancFramework/Resources/Patches/boost-1.66.0-linux-standard-base.patch @ 4883:504624b0a062
Added "/patients|studies|series|instances/{...}/attachments/{...}/info" route to retrieve the full information about an attachment (size, type, MD5 and UUID)
author |
Alain Mazy <am@osimis.io> |
date |
Wed, 09 Feb 2022 13:10:11 +0100 |
parents |
d25f4c0fa160 |
children |
|
rev |
line source |
2525
|
1 diff -urEb boost_1_66_0.orig/boost/move/adl_move_swap.hpp boost_1_66_0/boost/move/adl_move_swap.hpp
|
|
2 --- boost_1_66_0.orig/boost/move/adl_move_swap.hpp 2018-04-11 11:56:16.761768726 +0200
|
|
3 +++ boost_1_66_0/boost/move/adl_move_swap.hpp 2018-04-11 11:57:01.073881330 +0200
|
|
4 @@ -28,6 +28,8 @@
|
|
5 //Try to avoid including <algorithm>, as it's quite big
|
|
6 #if defined(_MSC_VER) && defined(BOOST_DINKUMWARE_STDLIB)
|
|
7 #include <utility> //Dinkum libraries define std::swap in utility which is lighter than algorithm
|
|
8 +#elif defined(__LSB_VERSION__)
|
|
9 +# include <utility>
|
|
10 #elif defined(BOOST_GNU_STDLIB)
|
|
11 //For non-GCC compilers, where GNUC version is not very reliable, or old GCC versions
|
|
12 //use the good old stl_algobase header, which is quite lightweight
|
|
13 Only in boost_1_66_0/boost/move: adl_move_swap.hpp~
|