From c9d7cf1e8fbd773c4165e0e17270c4ae6cd238e1 Mon Sep 17 00:00:00 2001 From: Stephen Birarda Date: Tue, 18 Jun 2013 17:17:13 -0700 Subject: [PATCH] remove a comment and add copyright to StdDev class --- libraries/shared/src/StdDev.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libraries/shared/src/StdDev.cpp b/libraries/shared/src/StdDev.cpp index 040f51dd50..2c29a4254b 100644 --- a/libraries/shared/src/StdDev.cpp +++ b/libraries/shared/src/StdDev.cpp @@ -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 -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];