Bug 1408459, part 2 - Remove unused declaration of NS_MeanAndStdDev(). r=erahm draft
authorAndrew McCreight <continuation@gmail.com>
Sun, 15 Oct 2017 08:30:57 -0700
changeset 680604 61b6bf96082f16f84dd1fff6f942ca6a809904de
parent 680603 c59aab700e6bd218edb2cea7b7fff99bc181b60e
child 735906 e2b147641c00374d2d9f7a11ee50448aaf56acdb
push id84560
push userbmo:continuation@gmail.com
push dateSun, 15 Oct 2017 20:42:31 +0000
reviewerserahm
bugs1408459
milestone58.0a1
Bug 1408459, part 2 - Remove unused declaration of NS_MeanAndStdDev(). r=erahm Also, fix up the include guard in that file. MozReview-Commit-ID: I3RGDb5P7Yn
xpcom/base/nsTraceRefcnt.h
--- a/xpcom/base/nsTraceRefcnt.h
+++ b/xpcom/base/nsTraceRefcnt.h
@@ -1,15 +1,15 @@
 /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
 /* vim: set ts=8 sts=2 et sw=2 tw=80: */
 /* This Source Code Form is subject to the terms of the Mozilla Public
  * License, v. 2.0. If a copy of the MPL was not distributed with this
  * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
-#ifndef nsTraceRefcnt_h___
-#define nsTraceRefcnt_h___
+#ifndef nsTraceRefcnt_h
+#define nsTraceRefcnt_h
 
 #include <stdio.h> // for FILE
 #include "nscore.h"
 
 class nsTraceRefcnt
 {
 public:
   static void Shutdown();
@@ -23,18 +23,9 @@ public:
   /**
    * Tell nsTraceRefcnt whether refcounting, allocation, and destruction
    * activity is legal.  This is used to trigger assertions for any such
    * activity that occurs because of static constructors or destructors.
    */
   static void SetActivityIsLegal(bool aLegal);
 };
 
-////////////////////////////////////////////////////////////////////////////////
-// And now for that utility that you've all been asking for...
-
-extern "C" void
-NS_MeanAndStdDev(double aNumberOfValues,
-                 double aSumOfValues, double aSumOfSquaredValues,
-                 double* aMeanResult, double* aStdDevResult);
-
-////////////////////////////////////////////////////////////////////////////////
-#endif
+#endif // nsTraceRefcnt_h