From beca358fb2b2dfecaf1c49d14a2da6d55457025c Mon Sep 17 00:00:00 2001 From: Willem Jan Withagen Date: Thu, 7 Dec 2017 01:21:56 +0100 Subject: [PATCH] include: xlist: Fix Clang error for missing string Clang complains: home/jenkins/workspace/ceph-master/src/include/xlist.h:210:13: error: invalid operands to binary exp ression ('std::ostream' (aka 'basic_ostream') and 'const char *') oss << ", "; ~~~ ^ ~~~~ 1 error generated. include ostream to fix Clang error Signed-off-by: Willem Jan Withagen --- src/include/xlist.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/include/xlist.h b/src/include/xlist.h index 3e39333e511d4..a191cbee758d6 100644 --- a/src/include/xlist.h +++ b/src/include/xlist.h @@ -18,6 +18,7 @@ #include "include/assert.h" #include #include +#include template class xlist { -- 2.39.5