From fe30fa5b6fdb88c98ca31fc11b4b90ea2bf9f24d Mon Sep 17 00:00:00 2001 From: Casey Bodley Date: Wed, 9 Nov 2016 14:27:11 -0500 Subject: [PATCH] rgw: add missing mutex header for std::once_flag this fix was added directly to the jewel branch rather than backporting from master, because the code on master compiles without this specific include - it's likely included by another header, but backporting would involve pulling in unrelated changes Signed-off-by: Casey Bodley --- src/rgw/rgw_http_client.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/src/rgw/rgw_http_client.cc b/src/rgw/rgw_http_client.cc index 2a9817a23aee6..d8b4ca94167a5 100644 --- a/src/rgw/rgw_http_client.cc +++ b/src/rgw/rgw_http_client.cc @@ -2,6 +2,7 @@ // vim: ts=8 sw=2 smarttab #include "include/compat.h" +#include #include #include -- 2.39.5