summaryrefslogtreecommitdiff
path: root/src/mem/ruby/common/TypeDefines.hh
diff options
context:
space:
mode:
authorDaniel R. Carvalho <odanrc@yahoo.com.br>2018-02-05 16:32:23 +0100
committerDaniel Carvalho <mr.danrc@gmail.com>2018-02-06 10:26:27 +0000
commitecee328c9244504f616a3b8cd352fca3d3e4b6e7 (patch)
tree4a551953d452215f091491226c2c78d74d085401 /src/mem/ruby/common/TypeDefines.hh
parentd5b9ffda458c0e1b7ad52b42d7c8caf2b4a5c022 (diff)
downloadgem5-ecee328c9244504f616a3b8cd352fca3d3e4b6e7.tar.xz
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 <nikos.nikoleris@arm.com> Maintainer: Nikos Nikoleris <nikos.nikoleris@arm.com>
Diffstat (limited to 'src/mem/ruby/common/TypeDefines.hh')
-rw-r--r--src/mem/ruby/common/TypeDefines.hh6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mem/ruby/common/TypeDefines.hh b/src/mem/ruby/common/TypeDefines.hh
index f29efe8b5..90be1c602 100644
--- a/src/mem/ruby/common/TypeDefines.hh
+++ b/src/mem/ruby/common/TypeDefines.hh
@@ -27,11 +27,11 @@
*/
-#ifndef TYPEDEFINES_H
-#define TYPEDEFINES_H
+#ifndef __MEM_RUBY_COMMON_TYPEDEFINES_HH__
+#define __MEM_RUBY_COMMON_TYPEDEFINES_HH__
typedef unsigned int LinkID;
typedef unsigned int NodeID;
typedef unsigned int SwitchID;
-#endif
+#endif //__MEM_RUBY_COMMON_TYPEDEFINES_HH__