Skip to content

Commit f1aeeb3

Browse files
committed
Remove extra spaces at the end of lines
1 parent e8bdfa2 commit f1aeeb3

1 file changed

Lines changed: 9 additions & 9 deletions

File tree

include/boost/multiprecision/cpp_int.hpp

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -676,7 +676,7 @@ struct cpp_int_base<MinBits, MinBits, signed_magnitude, Checked, void, false>
676676
using const_limb_pointer = const limb_type* ;
677677
using checked_type = std::integral_constant<int, Checked>;
678678

679-
struct scoped_shared_storage
679+
struct scoped_shared_storage
680680
{
681681
BOOST_MP_CXX14_CONSTEXPR scoped_shared_storage(const cpp_int_base&, std::size_t) {}
682682
BOOST_MP_CXX14_CONSTEXPR void deallocate(std::size_t) {}
@@ -863,7 +863,7 @@ struct cpp_int_base<MinBits, MinBits, unsigned_magnitude, Checked, void, false>
863863
using const_limb_pointer = const limb_type* ;
864864
using checked_type = std::integral_constant<int, Checked>;
865865

866-
struct scoped_shared_storage
866+
struct scoped_shared_storage
867867
{
868868
BOOST_MP_CXX14_CONSTEXPR scoped_shared_storage(const cpp_int_base&, std::size_t) {}
869869
BOOST_MP_CXX14_CONSTEXPR void deallocate(std::size_t) {}
@@ -1083,7 +1083,7 @@ struct cpp_int_base<MinBits, MinBits, signed_magnitude, Checked, void, true>
10831083
using const_limb_pointer = const local_limb_type*;
10841084
using checked_type = std::integral_constant<int, Checked>;
10851085

1086-
struct scoped_shared_storage
1086+
struct scoped_shared_storage
10871087
{
10881088
BOOST_MP_CXX14_CONSTEXPR scoped_shared_storage(const cpp_int_base&, std::size_t) {}
10891089
BOOST_MP_CXX14_CONSTEXPR void deallocate(std::size_t) {}
@@ -1161,7 +1161,7 @@ struct cpp_int_base<MinBits, MinBits, signed_magnitude, Checked, void, true>
11611161
: m_data(static_cast<local_limb_type>(i < 0 ? -i : i) & limb_mask), m_sign(i < 0) { check_in_range(i); }
11621162
#else
11631163
//
1164-
// conversion from float to __int128 is broken on clang/mingw,
1164+
// conversion from float to __int128 is broken on clang/mingw,
11651165
// see: https://bugs.llvm.org/show_bug.cgi?id=48940
11661166
// Since no floating point type has more than 64 bits of
11671167
// precision, we can simply cast to an intermediate type to
@@ -1265,7 +1265,7 @@ struct cpp_int_base<MinBits, MinBits, unsigned_magnitude, Checked, void, true>
12651265
using limb_pointer = local_limb_type* ;
12661266
using const_limb_pointer = const local_limb_type* ;
12671267

1268-
struct scoped_shared_storage
1268+
struct scoped_shared_storage
12691269
{
12701270
BOOST_MP_CXX14_CONSTEXPR scoped_shared_storage(const cpp_int_base&, std::size_t) {}
12711271
BOOST_MP_CXX14_CONSTEXPR void deallocate(std::size_t) {}
@@ -1392,7 +1392,7 @@ struct cpp_int_base<MinBits, MinBits, unsigned_magnitude, Checked, void, true>
13921392
local_limb_type c = m_data;
13931393
m_data &= limb_mask;
13941394
//
1395-
// Verification has to come afterwards, otherwise we can leave
1395+
// Verification has to come afterwards, otherwise we can leave
13961396
// ourselves in an invalid state:
13971397
//
13981398
detail::verify_limb_mask(true, c, limb_mask, checked_type());
@@ -1628,7 +1628,7 @@ struct cpp_int_backend
16281628
template <class A>
16291629
BOOST_MP_CXX14_CONSTEXPR typename std::enable_if<
16301630
boost::multiprecision::detail::is_unsigned<A>::value
1631-
&& trivial_tag::value, cpp_int_backend&>::type
1631+
&& trivial_tag::value, cpp_int_backend&>::type
16321632
operator=(const A& val)
16331633
noexcept(noexcept(std::declval<cpp_int_backend>().check_in_range(std::declval<A>())))
16341634
{
@@ -1653,9 +1653,9 @@ struct cpp_int_backend
16531653
}
16541654
template <class A>
16551655
BOOST_MP_CXX14_CONSTEXPR typename std::enable_if<
1656-
std::is_convertible<A, limb_type>::value
1656+
std::is_convertible<A, limb_type>::value
16571657
&& !boost::multiprecision::detail::is_integral<A>::value
1658-
&& trivial_tag::value, cpp_int_backend&>::type
1658+
&& trivial_tag::value, cpp_int_backend&>::type
16591659
operator=(const A& val)
16601660
{
16611661
this->check_in_range(val);

0 commit comments

Comments
 (0)