src/share/vm/gc_implementation/g1/dirtyCardQueue.hpp

Print this page
rev 7653 : 8068883: Remove disabling of warning "C4355: 'this' : used in base member initializer list"

@@ -40,10 +40,11 @@
 };
 
 // A ptrQueue whose elements are "oops", pointers to object heads.
 class DirtyCardQueue: public PtrQueue {
 public:
+  DirtyCardQueue() { }
   DirtyCardQueue(PtrQueueSet* qset_, bool perm = false) :
     // Dirty card queues are always active, so we create them with their
     // active field set to true.
     PtrQueue(qset_, perm, true /* active */) { }