From 1ef909c8c651ca70b4663f516cf4e47ca01d732f Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Sat, 20 Apr 2024 21:09:58 +0300 Subject: [PATCH] Remove tabs --- include/boost/uuid/detail/random_provider_posix.ipp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/include/boost/uuid/detail/random_provider_posix.ipp b/include/boost/uuid/detail/random_provider_posix.ipp index 92b53e44..7e2976d8 100644 --- a/include/boost/uuid/detail/random_provider_posix.ipp +++ b/include/boost/uuid/detail/random_provider_posix.ipp @@ -65,12 +65,12 @@ public: random_provider_base& operator= (random_provider_base&& that) BOOST_NOEXCEPT { - if( this != &that ) - { - destroy(); - fd_ = that.fd_; - that.fd_ = -1; - } + if( this != &that ) + { + destroy(); + fd_ = that.fd_; + that.fd_ = -1; + } return *this; }