forked from pool/boost
- update to 1.58.0: boost docs remain at 1.56 since upstream hasn't updated yet * New Libraries: Endian, Sort. * Updated Libraries: Asio, Chrono, Container, Context, Conversion, DateTime, Flyweight, Function, Functional/Factory, Fusion, Geometry, Hash, Interprocess, Intrusive, Lexical Cast, Log, Math, Move, Multi-index Containers, Multiprecision, Optional, Phoenix, Predef, Random, Thread, TypeErasure, TypeIndex, Units, Unordered, Variant. See http://www.boost.org/users/history/version_1_58_0.html - add 0001-Fix-exec_file-for-Python-3-3.4.patch , 0002-Fix-a-regression-with-non-constexpr-types.patch: Fixes regressions in 1.58 - drop bjam-alignment.patch, boost-gcc5.patch: Already fixed upstream differently - add boost-rpmoptflags-only.patch: Build only with optflags - add boost-aarch64-flags.patch: Avoid using -m64 - add boost-uuid-comparison.patch: Fix regression in UUID operator< - add boost-disable-pch-on-aarch64.patch: Disable pch on math library to avoid compiler segfault OBS-URL: https://build.opensuse.org/request/show/306161 OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/boost?expand=0&rev=144
25 lines
806 B
Diff
25 lines
806 B
Diff
From fc32eea4ac9e514a7d210306cd9fa3a017dfe02c Mon Sep 17 00:00:00 2001
|
|
From: VemundH <vehandel@online.no>
|
|
Date: Tue, 30 Sep 2014 21:53:45 +0200
|
|
Subject: [PATCH] remove incorrect casts
|
|
|
|
see https://github.com/boostorg/uuid/pull/5
|
|
|
|
---
|
|
include/boost/uuid/detail/uuid_x86.hpp | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/include/boost/uuid/detail/uuid_x86.hpp b/include/boost/uuid/detail/uuid_x86.hpp
|
|
index 1a329b0..5a2cdec 100644
|
|
--- a/boost/uuid/detail/uuid_x86.hpp
|
|
+++ b/boost/uuid/detail/uuid_x86.hpp
|
|
@@ -100,7 +100,7 @@ inline bool operator< (uuid const& lhs, uuid const& rhs) BOOST_NOEXCEPT
|
|
cmp = (cmp - 1u) ^ cmp;
|
|
rcmp = (rcmp - 1u) ^ rcmp;
|
|
|
|
- return static_cast< uint16_t >(cmp) < static_cast< uint16_t >(rcmp);
|
|
+ return cmp < rcmp;
|
|
}
|
|
|
|
} // namespace uuids
|