Removes trailing whitespaces at end of lines

Unnecessary end of line whitespace is generally frowned upon. In addition some
editors remove end of line whitespace automatically, making diffs hard to read.
This commit removes all trailing witespaces. Using some sed magic in bash:

find . -name "*.*" -type f -print0 | xargs gsed -i 's/[ \t]*$//'
This commit is contained in:
Alexander Leinoff
2016-04-19 12:10:01 -05:00
parent 56b53a09e2
commit efb64f2c7d
68 changed files with 224 additions and 224 deletions
@@ -32,7 +32,7 @@ double EpanechnikovKernel::Evaluate(const double distance) const
}
/**
* Evaluate gradient of the kernel not for two points
* Evaluate gradient of the kernel not for two points
* but for a numerical value.
*/
double EpanechnikovKernel::Gradient(const double distance) const {