From 914b93430afa5cee3dc5e8125dbbdcecea160f5d Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Sun, 7 Jun 2020 04:10:49 +0300 Subject: [PATCH] Change spinlock_sync.hpp to use a single byte --- include/boost/smart_ptr/detail/spinlock_sync.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/smart_ptr/detail/spinlock_sync.hpp b/include/boost/smart_ptr/detail/spinlock_sync.hpp index 854cc7e..cbfdd94 100644 --- a/include/boost/smart_ptr/detail/spinlock_sync.hpp +++ b/include/boost/smart_ptr/detail/spinlock_sync.hpp @@ -38,7 +38,7 @@ class spinlock { public: - int v_; + unsigned char v_; public: