]> git.pld-linux.org Git - packages/ceph.git/blame - long-int-time_t.patch
Merged update to 16.2.9 from master
[packages/ceph.git] / long-int-time_t.patch
CommitLineData
737284c4
JB
1--- ceph-16.2.7/src/json_spirit/json_spirit_value.h.orig 2021-12-07 17:15:49.000000000 +0100
2+++ ceph-16.2.7/src/json_spirit/json_spirit_value.h 2022-02-13 10:26:48.023109513 +0100
3@@ -51,6 +51,7 @@
4 Value_impl( const Array& value );\r
5 Value_impl( bool value );\r
6 Value_impl( int value );\r
7+ Value_impl( long int value );\r
8 Value_impl( boost::int64_t value );\r
9 Value_impl( boost::uint64_t value );\r
10 Value_impl( double value );\r
11@@ -294,6 +295,12 @@
12 : v_( static_cast< boost::int64_t >( value ) )\r
13 {\r
14 }\r
15+\r
16+ template< class Config >\r
17+ Value_impl< Config >::Value_impl( long int value )\r
18+ : v_( static_cast< boost::int64_t >( value ) )\r
19+ {\r
20+ }\r
21 \r
22 template< class Config >\r
23 Value_impl< Config >::Value_impl( boost::int64_t value )\r
This page took 0.041765 seconds and 4 git commands to generate.