mem: Fixup incorrect include guards

--HG--
extra : rebase_source : 9dba84eaf9c734a114ecd0940e1d505303644064
This commit is contained in:
Andreas Sandberg 2015-08-05 10:12:12 +01:00
parent d540ba0325
commit 0194e6eb2d
2 changed files with 6 additions and 6 deletions

View file

@ -37,8 +37,8 @@
* Authors: Andreas Sandberg
*/
#ifndef __MEM_PROBES_STACK_BASE_HH__
#define __MEM_PROBES_STACK_BASE_HH__
#ifndef __MEM_PROBES_BASE_HH__
#define __MEM_PROBES_BASE_HH__
#include <memory>
#include <vector>
@ -94,4 +94,4 @@ class BaseMemProbe : public SimObject
std::vector<std::unique_ptr<PacketListener>> listeners;
};
#endif // __MEM_PROBES_STACK_BASE_HH__
#endif // __MEM_PROBES_BASE_HH__

View file

@ -37,8 +37,8 @@
* Authors: Andreas Sandberg
*/
#ifndef __MEM_PROBES_STACK_DIST_HH__
#define __MEM_PROBES_STACK_DIST_HH__
#ifndef __MEM_PROBES_MEM_TRACE_HH__
#define __MEM_PROBES_MEM_TRACE_HH__
#include "mem/packet.hh"
#include "mem/probes/base.hh"
@ -66,4 +66,4 @@ class MemTraceProbe : public BaseMemProbe
ProtoOutputStream *traceStream;
};
#endif //__MEM_PROBES_STACK_DIST_HH__
#endif //__MEM_PROBES_MEM_TRACE_HH__