src/hotspot/share/jfr/recorder/checkpoint/types/jfrTypeSetUtils.cpp
changeset 51334 cc2c79d22508
parent 50634 c349d409262a
child 51444 3e5d28e6de32
equal deleted inserted replaced
51333:f6641fcf7b7e 51334:cc2c79d22508
    26 #include "jfr/recorder/checkpoint/types/jfrTypeSetUtils.hpp"
    26 #include "jfr/recorder/checkpoint/types/jfrTypeSetUtils.hpp"
    27 #include "oops/instanceKlass.hpp"
    27 #include "oops/instanceKlass.hpp"
    28 #include "oops/oop.inline.hpp"
    28 #include "oops/oop.inline.hpp"
    29 #include "oops/symbol.hpp"
    29 #include "oops/symbol.hpp"
    30 
    30 
    31 JfrSymbolId::JfrSymbolId() : _symbol_id_counter(0), _sym_table(new SymbolTable(this)), _cstring_table(new CStringTable(this)) {
    31 JfrSymbolId::JfrSymbolId() : _sym_table(new SymbolTable(this)), _cstring_table(new CStringTable(this)), _symbol_id_counter(0) {
    32   assert(_sym_table != NULL, "invariant");
    32   assert(_sym_table != NULL, "invariant");
    33   assert(_cstring_table != NULL, "invariant");
    33   assert(_cstring_table != NULL, "invariant");
    34   initialize();
    34   initialize();
    35 }
    35 }
    36 
    36