Skip to content

Commit ebe08a6

Browse files
committed
Fix include guards for renamed files
1 parent 027ef1c commit ebe08a6

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

src/hotspot/share/gc/z/zPhysicalMemoryManager.hpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@
2121
* questions.
2222
*/
2323

24-
#ifndef SHARE_GC_Z_ZPHYSICALMEMORY_HPP
25-
#define SHARE_GC_Z_ZPHYSICALMEMORY_HPP
24+
#ifndef SHARE_GC_Z_ZPHYSICALMEMORYMANAGER_HPP
25+
#define SHARE_GC_Z_ZPHYSICALMEMORYMANAGER_HPP
2626

2727
#include "gc/z/zAddress.hpp"
2828
#include "gc/z/zArray.hpp"
@@ -58,4 +58,4 @@ class ZPhysicalMemoryManager {
5858
size_t count_segments(const zoffset* pmem, size_t size);
5959
};
6060

61-
#endif // SHARE_GC_Z_ZPHYSICALMEMORY_HPP
61+
#endif // SHARE_GC_Z_ZPHYSICALMEMORYMANAGER_HPP

src/hotspot/share/gc/z/zVirtualMemoryManager.hpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@
2121
* questions.
2222
*/
2323

24-
#ifndef SHARE_GC_Z_ZVIRTUALMEMORY_HPP
25-
#define SHARE_GC_Z_ZVIRTUALMEMORY_HPP
24+
#ifndef SHARE_GC_Z_ZVIRTUALMEMORYMANAGER_HPP
25+
#define SHARE_GC_Z_ZVIRTUALMEMORYMANAGER_HPP
2626

2727
#include "gc/z/zAddress.hpp"
2828
#include "gc/z/zArray.hpp"
@@ -71,4 +71,4 @@ class ZVirtualMemoryManager {
7171
zoffset lowest_available_address(int numa_id) const;
7272
};
7373

74-
#endif // SHARE_GC_Z_ZVIRTUALMEMORY_HPP
74+
#endif // SHARE_GC_Z_ZVIRTUALMEMORYMANAGER_HPP

0 commit comments

Comments
 (0)