diff options
author | John Spray <john.spray@redhat.com> | 2016-08-01 00:22:19 +0200 |
---|---|---|
committer | John Spray <john.spray@redhat.com> | 2016-09-29 18:27:02 +0200 |
commit | ab2403804908349bc0b7480bed177f8cb2e95c73 (patch) | |
tree | 6afe8812e687d5cbe62702ecef9bf613cfb31827 /src/common/TextTable.h | |
parent | pybind/mgr: update rest module for pg_summary (diff) | |
download | ceph-ab2403804908349bc0b7480bed177f8cb2e95c73.tar.xz ceph-ab2403804908349bc0b7480bed177f8cb2e95c73.zip |
common/TextTable: add include guards
Signed-off-by: John Spray <john.spray@redhat.com>
Diffstat (limited to 'src/common/TextTable.h')
-rw-r--r-- | src/common/TextTable.h | 7 |
1 files changed, 7 insertions, 0 deletions
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 <vector> #include <sstream> #include <iomanip> @@ -158,3 +162,6 @@ public: void clear(); }; + +#endif + |