We used the wrong syntax for "new", which generated a warning/error building with clang.

Review URL: http://webrtc-codereview.appspot.com/336003

git-svn-id: http://webrtc.googlecode.com/svn/trunk@1241 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
tina.legrand@webrtc.org 2011-12-20 09:05:55 +00:00
parent b5b155b8a9
commit 5efcad1758

View File

@ -167,7 +167,7 @@ _calcVar(false),
_sum(0),
_sumSqr(0)
{
_buff = new(double[len]);
_buff = new double[len];
if(_buff == NULL)
{
_buffLen = 0;