summaryrefslogtreecommitdiff
path: root/src/cpu/ozone/rename_table_impl.hh
diff options
context:
space:
mode:
Diffstat (limited to 'src/cpu/ozone/rename_table_impl.hh')
-rw-r--r--src/cpu/ozone/rename_table_impl.hh4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/cpu/ozone/rename_table_impl.hh b/src/cpu/ozone/rename_table_impl.hh
index e8071e2b3..06551b3cb 100644
--- a/src/cpu/ozone/rename_table_impl.hh
+++ b/src/cpu/ozone/rename_table_impl.hh
@@ -27,6 +27,8 @@
*
* Authors: Kevin Lim
*/
+#ifndef __CPU_OZONE_RENAME_TABLE_IMPL_HH__
+#define __CPU_OZONE_RENAME_TABLE_IMPL_HH__
#include <cstdlib> // Not really sure what to include to get NULL
@@ -52,3 +54,5 @@ RenameTable<Impl>::copyFrom(const RenameTable<Impl> &table_to_copy)
table[i] = table_to_copy.table[i];
}
}
+
+#endif//__CPU_OZONE_RENAME_TABLE_IMPL_HH__