src/share/vm/gc_implementation/shared/gcUtil.cpp

changeset 2505
176d0be30214
parent 2314
f95d63e2154a
child 2708
1d1603768966
     1.1 --- a/src/share/vm/gc_implementation/shared/gcUtil.cpp	Wed Feb 02 10:41:20 2011 -0800
     1.2 +++ b/src/share/vm/gc_implementation/shared/gcUtil.cpp	Thu Feb 03 16:06:01 2011 -0500
     1.3 @@ -106,8 +106,8 @@
     1.4  }
     1.5  
     1.6  LinearLeastSquareFit::LinearLeastSquareFit(unsigned weight) :
     1.7 -  _sum_x(0), _sum_y(0), _sum_xy(0),
     1.8 -  _mean_x(weight), _mean_y(weight) {}
     1.9 +  _sum_x(0), _sum_x_squared(0), _sum_y(0), _sum_xy(0),
    1.10 +  _intercept(0), _slope(0), _mean_x(weight), _mean_y(weight) {}
    1.11  
    1.12  void LinearLeastSquareFit::update(double x, double y) {
    1.13    _sum_x = _sum_x + x;

mercurial