< prev index next >

src/share/vm/logging/logTagSet.hpp

Print this page
rev 10535 : imported patch 8151438

@@ -66,10 +66,14 @@
 
   size_t ntags() const {
     return _ntags;
   }
 
+  LogTagType tag(size_t idx) const {
+    return _tag[idx];
+  }
+
   bool contains(LogTagType tag) const {
     for (size_t i = 0; _tag[i] != LogTag::__NO_TAG; i++) {
       if (tag == _tag[i]) {
         return true;
       }
< prev index next >