We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0c21dd0 commit 26c1db9Copy full SHA for 26c1db9
src/hotspot/share/gc/g1/g1ConcurrentMark.hpp
@@ -50,10 +50,6 @@ class G1RegionToSpaceMapper;
50
class G1SurvivorRegions;
51
class ThreadClosure;
52
53
-PRAGMA_DIAG_PUSH
54
-// warning C4522: multiple assignment operators specified
55
-PRAGMA_DISABLE_MSVC_WARNING(4522)
56
-
57
// This is a container class for either an oop or a continuation address for
58
// mark stack entries. Both are pushed onto the mark stack.
59
class G1TaskQueueEntry {
@@ -89,8 +85,6 @@ class G1TaskQueueEntry {
89
85
bool is_null() const { return _holder == NULL; }
90
86
};
91
87
92
-PRAGMA_DIAG_POP
93
94
88
typedef GenericTaskQueue<G1TaskQueueEntry, mtGC> G1CMTaskQueue;
95
typedef GenericTaskQueueSet<G1CMTaskQueue, mtGC> G1CMTaskQueueSet;
96
0 commit comments