hotspot/src/share/vm/utilities/growableArray.hpp
changeset 46448 b5350a83520b
parent 42650 1f304d0c888b
--- a/hotspot/src/share/vm/utilities/growableArray.hpp	Tue May 09 13:50:06 2017 -0400
+++ b/hotspot/src/share/vm/utilities/growableArray.hpp	Wed May 10 08:37:17 2017 -0400
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 1997, 2016, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 1997, 2017, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -567,4 +567,9 @@
   }
 };
 
+// Arrays for basic types
+typedef GrowableArray<int> intArray;
+typedef GrowableArray<int> intStack;
+typedef GrowableArray<bool> boolArray;
+
 #endif // SHARE_VM_UTILITIES_GROWABLEARRAY_HPP