7019157: errorHandler doesn't compile with super old gcc without precompiled headers
authorcoleenp
Sat, 12 Feb 2011 10:28:34 -0500
changeset 8304 23bb69b0c51f
parent 8303 81a0b8663748
child 8305 e398eee5332d
7019157: errorHandler doesn't compile with super old gcc without precompiled headers Summary: old gccs don't support precompiled headers so have to supply includes Reviewed-by: phh, kamg
hotspot/src/share/vm/utilities/errorReporter.hpp
--- a/hotspot/src/share/vm/utilities/errorReporter.hpp	Thu Feb 10 13:03:22 2011 +0100
+++ b/hotspot/src/share/vm/utilities/errorReporter.hpp	Sat Feb 12 10:28:34 2011 -0500
@@ -26,6 +26,7 @@
 #define SHARE_VM_UTILITIES_ERRORREPORTER_HPP
 
 #include "utilities/globalDefinitions.hpp"
+#include "memory/allocation.hpp"
 
 class ErrorReporter : public StackObj {