Search
j0ke.net Open Build Service
>
Projects
>
home:netmax
:
playground
:
EL8:mysql-libs-compat
>
mysql
> boost-1.57.0-mpl-print.patch
Sign Up
|
Log In
Username
Password
Cancel
Overview
Repositories
Revisions
Requests
Users
Advanced
Attributes
Meta
File boost-1.57.0-mpl-print.patch of Package mysql (Revision 1)
Currently displaying revision
1
,
show latest
diff -up boost_1_57_0/boost/mpl/print.hpp\~ boost_1_57_0/boost/mpl/print.hpp --- boost_1_57_0/boost/mpl/print.hpp~ 2014-07-09 23:12:31.000000000 +0200 +++ boost_1_57_0/boost/mpl/print.hpp 2015-01-20 12:44:59.621400948 +0100 @@ -52,16 +52,15 @@ struct print enum { n = sizeof(T) + -1 }; #elif defined(__MWERKS__) void f(int); -#else - enum { - n = -# if defined(__EDG_VERSION__) - aux::dependent_unsigned<T>::value > -1 -# else - sizeof(T) > -1 -# endif - }; -#endif +#elif defined(__EDG_VERSION__) + enum { n = aux::dependent_unsigned<T>::value > -1 }; +#elif defined(BOOST_GCC) + enum { n1 }; + enum { n2 }; + enum { n = n1 != n2 }; +#else + enum { n = sizeof(T) > -1 }; +#endif }; #if defined(BOOST_MSVC) Diff finished. Tue Jan 20 12:45:03 2015