From 27c4e90374cb66d668ea1efb228e185fad884429 Mon Sep 17 00:00:00 2001 From: Daniel James Date: Sun, 12 May 2013 14:33:15 +0000 Subject: [PATCH] Add trailing newlines to siphash examples. I'm not sure if I'll actually release this example. I don't think it does a good job of demonstrating what I wanted. [SVN r84249] --- examples/siphash/Jamfile.v2 | 2 +- examples/siphash/siphash.cpp | 2 +- examples/siphash/siphash.hpp | 2 +- examples/siphash/siphash_example.cpp | 2 +- examples/siphash/siphash_generate.cpp | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/examples/siphash/Jamfile.v2 b/examples/siphash/Jamfile.v2 index abf4d8c5..838424fe 100644 --- a/examples/siphash/Jamfile.v2 +++ b/examples/siphash/Jamfile.v2 @@ -15,4 +15,4 @@ project unordered-test/example/siphash lib siphash : siphash.cpp siphash_generate.cpp /boost/random//boost_random ; -run siphash_example.cpp siphash ; \ No newline at end of file +run siphash_example.cpp siphash ; diff --git a/examples/siphash/siphash.cpp b/examples/siphash/siphash.cpp index aba1d7d1..5d62db67 100644 --- a/examples/siphash/siphash.cpp +++ b/examples/siphash/siphash.cpp @@ -88,4 +88,4 @@ namespace hash return v0 ^ v1 ^ v2 ^ v3; } -} \ No newline at end of file +} diff --git a/examples/siphash/siphash.hpp b/examples/siphash/siphash.hpp index 5b2dd176..27a78d58 100644 --- a/examples/siphash/siphash.hpp +++ b/examples/siphash/siphash.hpp @@ -201,4 +201,4 @@ namespace hash #endif } -#endif \ No newline at end of file +#endif diff --git a/examples/siphash/siphash_example.cpp b/examples/siphash/siphash_example.cpp index ef58d3de..a0a60023 100644 --- a/examples/siphash/siphash_example.cpp +++ b/examples/siphash/siphash_example.cpp @@ -35,4 +35,4 @@ int main() assert(x1.bucket(10) == x2.bucket(10)); assert(x1.bucket(30) == x2.bucket(30)); -} \ No newline at end of file +} diff --git a/examples/siphash/siphash_generate.cpp b/examples/siphash/siphash_generate.cpp index bcc480f5..152022a8 100644 --- a/examples/siphash/siphash_generate.cpp +++ b/examples/siphash/siphash_generate.cpp @@ -24,4 +24,4 @@ namespace hash k.k1 = gen(); return k; } -} \ No newline at end of file +}