]> git.pld-linux.org Git - packages/ceph.git/blobdiff - long-int-time_t.patch
Merged update to 16.2.9 from master
[packages/ceph.git] / long-int-time_t.patch
diff --git a/long-int-time_t.patch b/long-int-time_t.patch
new file mode 100644 (file)
index 0000000..837ff10
--- /dev/null
@@ -0,0 +1,23 @@
+--- ceph-16.2.7/src/json_spirit/json_spirit_value.h.orig       2021-12-07 17:15:49.000000000 +0100
++++ ceph-16.2.7/src/json_spirit/json_spirit_value.h    2022-02-13 10:26:48.023109513 +0100
+@@ -51,6 +51,7 @@
+         Value_impl( const Array&       value );\r
+         Value_impl( bool               value );\r
+         Value_impl( int                value );\r
++        Value_impl( long int           value );\r
+         Value_impl( boost::int64_t     value );\r
+         Value_impl( boost::uint64_t    value );\r
+         Value_impl( double             value );\r
+@@ -294,6 +295,12 @@
+     :   v_( static_cast< boost::int64_t >( value ) )\r
+     {\r
+     }\r
++\r
++    template< class Config >\r
++    Value_impl< Config >::Value_impl( long int value )\r
++    :   v_( static_cast< boost::int64_t >( value ) )\r
++    {\r
++    }\r
\r
+     template< class Config >\r
+     Value_impl< Config >::Value_impl( boost::int64_t value )\r
This page took 0.039947 seconds and 4 git commands to generate.