From ecee328c9244504f616a3b8cd352fca3d3e4b6e7 Mon Sep 17 00:00:00 2001 From: "Daniel R. Carvalho" Date: Mon, 5 Feb 2018 16:32:23 +0100 Subject: mem: Standardize mem folder header guards Standardize all header guards in the mem directory according to the most frequent patterns. In general they have the form: mem: __FOLDER_TREE_FILE_NAME_HH__ ruby: __FOLDER_TREE_FILENAME_HH__ Change-Id: I983853e292deb302becf151bf0e970057dc24774 Reviewed-on: https://gem5-review.googlesource.com/7881 Reviewed-by: Nikos Nikoleris Maintainer: Nikos Nikoleris --- src/mem/ruby/common/BoolVec.hh | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src/mem/ruby/common/BoolVec.hh') diff --git a/src/mem/ruby/common/BoolVec.hh b/src/mem/ruby/common/BoolVec.hh index 0323ecc1e..95df602c9 100644 --- a/src/mem/ruby/common/BoolVec.hh +++ b/src/mem/ruby/common/BoolVec.hh @@ -37,9 +37,14 @@ * Authors: Brad Beckmann */ +#ifndef __MEM_RUBY_COMMON_BOOLVEC_HH__ +#define __MEM_RUBY_COMMON_BOOLVEC_HH__ + #include #include typedef std::vector BoolVec; std::ostream& operator<<(std::ostream& os, const std::vector& myvector); + +#endif //__MEM_RUBY_COMMON_BOOLVEC_HH__ -- cgit v1.2.3