remove a comment and add copyright to StdDev class

This commit is contained in:
Stephen Birarda 2013-06-18 17:17:13 -07:00
parent 71c51022a4
commit c9d7cf1e8f

View file

@ -3,13 +3,13 @@
// hifi
//
// Created by Philip Rosedale on 3/12/13.
//
// Copyright (c) 2013 HighFidelity, Inc. All rights reserved.
//
#include "StdDev.h"
#include <cmath>
const int MAX_STDEV_SAMPLES = 1000; // Don't add more than this number of samples.
const int MAX_STDEV_SAMPLES = 1000;
StDev::StDev() {
data = new float[MAX_STDEV_SAMPLES];