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]
This commit is contained in:
Daniel James
2013-05-12 14:33:15 +00:00
parent 6b21eeccab
commit 27c4e90374
5 changed files with 5 additions and 5 deletions

View File

@ -15,4 +15,4 @@ project unordered-test/example/siphash
lib siphash : siphash.cpp siphash_generate.cpp /boost/random//boost_random ; lib siphash : siphash.cpp siphash_generate.cpp /boost/random//boost_random ;
run siphash_example.cpp siphash ; run siphash_example.cpp siphash ;

View File

@ -88,4 +88,4 @@ namespace hash
return v0 ^ v1 ^ v2 ^ v3; return v0 ^ v1 ^ v2 ^ v3;
} }
} }

View File

@ -201,4 +201,4 @@ namespace hash
#endif #endif
} }
#endif #endif

View File

@ -35,4 +35,4 @@ int main()
assert(x1.bucket(10) == x2.bucket(10)); assert(x1.bucket(10) == x2.bucket(10));
assert(x1.bucket(30) == x2.bucket(30)); assert(x1.bucket(30) == x2.bucket(30));
} }

View File

@ -24,4 +24,4 @@ namespace hash
k.k1 = gen(); k.k1 = gen();
return k; return k;
} }
} }