From: Willem Jan Withagen Date: Fri, 31 Aug 2018 10:21:45 +0000 (+0200) Subject: common: Reverse deleted include X-Git-Tag: v14.0.1~440^2 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=2b1bc4160e54037b34a0beedb930df0d16a40fcb;p=ceph.git common: Reverse deleted include Reversing 1 delete from https://github.com/ceph/ceph/commit/09d3f546b32cdf126a1246899a0b0a3eb25282d8 Clang trips over this: home/jenkins/workspace/ceph-master/src/common/ConfUtils.cc:94:19: error: implicit instantiation of undefined template 'std::__1::basic_ostringstream, std::__1::allocator >' ostringstream oss; ^ /usr/include/c++/v1/iosfwd:123:32: note: template is declared here class _LIBCPP_TEMPLATE_VIS basic_ostringstream; ^ Signed-off-by: Willem Jan Withagen --- diff --git a/src/common/ConfUtils.cc b/src/common/ConfUtils.cc index ee008a39ce671..7c8f1cc78b7f0 100644 --- a/src/common/ConfUtils.cc +++ b/src/common/ConfUtils.cc @@ -14,6 +14,7 @@ #include #include +#include #include #include