From: John Spray Date: Sun, 31 Jul 2016 22:22:19 +0000 (+0100) Subject: common/TextTable: add include guards X-Git-Tag: v11.0.1~60^2~29 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=ab2403804908349bc0b7480bed177f8cb2e95c73;p=ceph.git common/TextTable: add include guards Signed-off-by: John Spray --- diff --git a/src/common/TextTable.h b/src/common/TextTable.h index 102e16fe482..60c982a7e5f 100644 --- a/src/common/TextTable.h +++ b/src/common/TextTable.h @@ -11,6 +11,10 @@ * Foundation. See file COPYING. * */ + +#ifndef TEXT_TABLE_H_ +#define TEXT_TABLE_H_ + #include #include #include @@ -158,3 +162,6 @@ public: void clear(); }; + +#endif +