From cea4262e623a17abf17f964fa951e218320e73ed Mon Sep 17 00:00:00 2001 From: Andrey Semashev Date: Sun, 3 Sep 2023 02:10:47 +0300 Subject: [PATCH] Trim trailing spaces. --- include/boost/utility/value_init.hpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/include/boost/utility/value_init.hpp b/include/boost/utility/value_init.hpp index b685416..c0b9532 100644 --- a/include/boost/utility/value_init.hpp +++ b/include/boost/utility/value_init.hpp @@ -32,7 +32,7 @@ // It is safe to ignore the following warning from MSVC 7.1 or higher: // "warning C4351: new behavior: elements of array will be default initialized" #pragma warning(disable: 4351) -// It is safe to ignore the following MSVC warning, which may pop up when T is +// It is safe to ignore the following MSVC warning, which may pop up when T is // a const type: "warning C4512: assignment operator could not be generated". #pragma warning(disable: 4512) #endif @@ -40,8 +40,8 @@ #ifndef BOOST_UTILITY_DOCS #ifdef BOOST_NO_COMPLETE_VALUE_INITIALIZATION - // Implementation detail: The macro BOOST_DETAIL_VALUE_INIT_WORKAROUND_SUGGESTED - // suggests that a workaround should be applied, because of compiler issues + // Implementation detail: The macro BOOST_DETAIL_VALUE_INIT_WORKAROUND_SUGGESTED + // suggests that a workaround should be applied, because of compiler issues // regarding value-initialization. #define BOOST_DETAIL_VALUE_INIT_WORKAROUND_SUGGESTED #endif @@ -164,13 +164,13 @@ class value_initialized initialized m_data; public : - + BOOST_GPU_ENABLED value_initialized() : m_data() { } - + BOOST_GPU_ENABLED T const & data() const { @@ -228,7 +228,7 @@ void swap ( value_initialized & lhs, value_initialized & rhs ) class initialized_value_t { public : - + template BOOST_GPU_ENABLED operator T() const { return initialized().data();