From 3fdf77d29b8702a918522a966ca2cd7e30209065 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Lepin?= Date: Thu, 2 May 2019 13:22:04 +0200 Subject: [PATCH] ConnProperties: use std atomic --- src/ConnectionProperties.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ConnectionProperties.h b/src/ConnectionProperties.h index 5969fb88..a766ef6a 100644 --- a/src/ConnectionProperties.h +++ b/src/ConnectionProperties.h @@ -18,7 +18,7 @@ with this program. If not, see #pragma once -#include +#include class ConnectionProperties { @@ -27,5 +27,5 @@ public: bool isAuthenticated(); void setAuthenticated(bool authenticated); private: - boost::atomic _authenticated; + std::atomic _authenticated; }; \ No newline at end of file