src/share/vm/utilities/numberSeq.hpp

changeset 3901
24b9c7f4cae6
parent 3900
d2a62e0f25eb
child 6876
710a3c8b516e
     1.1 --- a/src/share/vm/utilities/numberSeq.hpp	Fri Jun 29 17:12:15 2012 -0700
     1.2 +++ b/src/share/vm/utilities/numberSeq.hpp	Mon Jul 02 13:11:28 2012 -0400
     1.3 @@ -25,6 +25,8 @@
     1.4  #ifndef SHARE_VM_UTILITIES_NUMBERSEQ_HPP
     1.5  #define SHARE_VM_UTILITIES_NUMBERSEQ_HPP
     1.6  
     1.7 +#include "memory/allocation.hpp"
     1.8 +
     1.9  /**
    1.10   **  This file contains a few classes that represent number sequence,
    1.11   **  x1, x2, x3, ..., xN, and can calculate their avg, max, and sd.
    1.12 @@ -40,7 +42,7 @@
    1.13  
    1.14  #define DEFAULT_ALPHA_VALUE 0.7
    1.15  
    1.16 -class AbsSeq {
    1.17 +class AbsSeq: public CHeapObj<mtInternal> {
    1.18  private:
    1.19    void init(double alpha);
    1.20  

mercurial