--- old/src/share/vm/logging/logOutput.hpp 2015-09-15 11:20:08.798623543 +0200 +++ new/src/share/vm/logging/logOutput.hpp 2015-09-15 11:20:08.706623540 +0200 @@ -23,6 +23,7 @@ */ #ifndef SHARE_VM_LOGGING_LOGOUTPUT_HPP #define SHARE_VM_LOGGING_LOGOUTPUT_HPP + #include "logging/logDecorators.hpp" #include "memory/allocation.hpp" #include "utilities/globalDefinitions.hpp" @@ -32,7 +33,7 @@ // The base class/interface for log outputs. // Keeps track of the latest configuration string, // and its selected decorators. -class LogOutput : public CHeapObj { +class LogOutput : public CHeapObj { protected: LogDecorators _decorators; char* _config_string; @@ -64,4 +65,4 @@ virtual int write(const LogDecorations &decorations, const char* msg) = 0; }; -#endif +#endif // SHARE_VM_LOGGING_LOGOUTPUT_HPP