--- old/src/share/vm/logging/logDecorators.hpp 2015-09-15 11:20:05.026623423 +0200 +++ new/src/share/vm/logging/logDecorators.hpp 2015-09-15 11:20:04.946623420 +0200 @@ -21,8 +21,10 @@ * questions. * */ -#ifndef SHARE_VM_LOGGING_LOGDECORATORS_HPP_ -#define SHARE_VM_LOGGING_LOGDECORATORS_HPP_ +#ifndef SHARE_VM_LOGGING_LOGDECORATORS_HPP +#define SHARE_VM_LOGGING_LOGDECORATORS_HPP + +#include "memory/allocation.hpp" #include "utilities/globalDefinitions.hpp" // The list of available decorators: @@ -52,7 +54,7 @@ // each log message for a given output. Decorators are always prepended in the order // declared above. For example, logging with 'uptime, level, tags' decorators results in: // [0,943s][info ][logging] message. -class LogDecorators { +class LogDecorators VALUE_OBJ_CLASS_SPEC { public: enum Decorator { #define DECORATOR(name, abbr) name##_decorator, @@ -100,4 +102,4 @@ bool parse(const char* decorator_args, outputStream* errstream = NULL); }; -#endif +#endif // SHARE_VM_LOGGING_LOGDECORATORS_HPP