summaryrefslogtreecommitdiff
path: root/src/mem/simple_mem.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/simple_mem.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/simple_mem.hh')
-rw-r--r--src/mem/simple_mem.hh6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mem/simple_mem.hh b/src/mem/simple_mem.hh
index 6636f2c90..307981b80 100644
--- a/src/mem/simple_mem.hh
+++ b/src/mem/simple_mem.hh
@@ -46,8 +46,8 @@
* SimpleMemory declaration
*/
-#ifndef __SIMPLE_MEMORY_HH__
-#define __SIMPLE_MEMORY_HH__
+#ifndef __MEM_SIMPLE_MEMORY_HH__
+#define __MEM_SIMPLE_MEMORY_HH__
#include <list>
@@ -203,4 +203,4 @@ class SimpleMemory : public AbstractMemory
};
-#endif //__SIMPLE_MEMORY_HH__
+#endif //__MEM_SIMPLE_MEMORY_HH__