Skip to content

Commit

Permalink
Disable a block of unused code that fails to compile with gcc8. Backp…
Browse files Browse the repository at this point in the history
…orted from f251336.
  • Loading branch information
brianwalenz committed Jun 15, 2018
1 parent ebc9118 commit 22800dd
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/AS_UTL/stddev.H
Original file line number Diff line number Diff line change
Expand Up @@ -286,7 +286,7 @@ computeExponentialMovingAverage(TT alpha, TT ema, TT value) {




#if 0

template<typename TT>
class genericStatistics {
Expand Down Expand Up @@ -338,12 +338,12 @@ public:

vector<uint64> &histogram(void) { // Returns pointer to private histogram data
finalizeData();
return(&_histogram);
return(_histogram);
};

vector<uint64> &Nstatistics(void) { // Returns pointer to private N data
finalizeData();
return(&_Nstatistics);
return(_Nstatistics);
};

void finalizeData(void) {
Expand Down Expand Up @@ -375,7 +375,7 @@ private:
vector<uint64> _Nstatistics;
};


#endif



Expand Down Expand Up @@ -422,12 +422,12 @@ public:
#if 0
vector<uint64> &histogram(void) { // Returns pointer to private histogram data
finalizeData();
return(&_histogram);
return(_histogram);
};

vector<uint64> &Nstatistics(void) { // Returns pointer to private N data
finalizeData();
return(&_Nstatistics);
return(_Nstatistics);
};
#endif

Expand Down

0 comments on commit 22800dd

Please sign in to comment.