public inbox for gdb-patches@sourceware.org
 help / color / mirror / Atom feed
* [pushed] Add include guard to filename-seen-cache.h
@ 2018-03-26 19:32 Simon Marchi
  0 siblings, 0 replies; only message in thread
From: Simon Marchi @ 2018-03-26 19:32 UTC (permalink / raw)
  To: gdb-patches; +Cc: Simon Marchi

While moving things around, I stumbled on filename_seen_cache being
re-defined, because filename-seen-cache.h doesn't have an include guard.

gdb/ChangeLog:

	* filename-seen-cache.h: Add include guard.
---
 gdb/ChangeLog             | 4 ++++
 gdb/filename-seen-cache.h | 5 +++++
 2 files changed, 9 insertions(+)

diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index 6de3150..7952dee 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,3 +1,7 @@
+2018-03-26  Simon Marchi  <simon.marchi@ericsson.com>
+
+	* filename-seen-cache.h: Add include guard.
+
 2018-03-26  Keith Seitz  <keiths@redhat.com>
 
 	* symfile.c (place_section): Remove "struct" from section_addr_info
diff --git a/gdb/filename-seen-cache.h b/gdb/filename-seen-cache.h
index a644b1a..6c89700 100644
--- a/gdb/filename-seen-cache.h
+++ b/gdb/filename-seen-cache.h
@@ -17,6 +17,9 @@
    You should have received a copy of the GNU General Public License
    along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
 
+#ifndef FILENAME_SEEN_CACHE_H
+#define FILENAME_SEEN_CACHE_H
+
 #include "defs.h"
 #include "common/function-view.h"
 
@@ -59,3 +62,5 @@ private:
   /* Table of files seen so far.  */
   htab_t m_tab;
 };
+
+#endif /* FILENAME_SEEN_CACHE_H */
-- 
2.7.4

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2018-03-26 19:32 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-03-26 19:32 [pushed] Add include guard to filename-seen-cache.h Simon Marchi

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).