hotspot/src/os/aix/vm/porting_aix.cpp
changeset 24430 47a764232b9c
parent 22831 1e2ba1d62103
child 25949 34557722059b
--- a/hotspot/src/os/aix/vm/porting_aix.cpp	Fri May 09 17:06:52 2014 +0200
+++ b/hotspot/src/os/aix/vm/porting_aix.cpp	Mon May 12 09:59:56 2014 -0400
@@ -23,6 +23,7 @@
  */
 
 #include "asm/assembler.hpp"
+#include "memory/allocation.hpp"
 #include "loadlib_aix.hpp"
 #include "porting_aix.hpp"
 #include "utilities/debug.hpp"
@@ -67,7 +68,7 @@
 // a primitive string map. Should this turn out to be a performance
 // problem, a better hashmap has to be used.
 class fixed_strings {
-  struct node {
+  struct node : public CHeapObj<mtInternal> {
     char* v;
     node* next;
   };