mirror of
https://github.com/lubosz/overte.git
synced 2025-04-23 12:14:00 +02:00
remove a comment and add copyright to StdDev class
This commit is contained in:
parent
71c51022a4
commit
c9d7cf1e8f
1 changed files with 2 additions and 2 deletions
|
@ -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];
|
||||
|
|
Loading…
Reference in a new issue