Replace tabs with spaces.

This commit is contained in:
Tom Ritchford
2015-08-03 10:56:03 -04:00
committed by Nik Bougalis
parent b783e353c4
commit 641ab8ddaf
2 changed files with 7 additions and 7 deletions

View File

@@ -6,9 +6,9 @@ Wrappers and utilities to make working with boost::asio easier.
If an object calls asynchronous initiating functions it must either:
1. Manage its lifetime by being reference counted
1. Manage its lifetime by being reference counted
or
or
2. Wait for all pending completion handlers to be called before
allowing itself to be destroyed.
2. Wait for all pending completion handlers to be called before
allowing itself to be destroyed.

View File

@@ -90,9 +90,9 @@ maybe_reverse_bytes(T& t, Hasher&)
// is_uniquely_represented<T>
// A type T is contiguously hashable if for all combinations of two values of
// a type, say x and y, if x == y, then it must also be true that
// memcmp(addressof(x), addressof(y), sizeof(T)) == 0. I.e. if x == y,
// then x and y have the same bit pattern representation.
// a type, say x and y, if x == y, then it must also be true that
// memcmp(addressof(x), addressof(y), sizeof(T)) == 0. I.e. if x == y,
// then x and y have the same bit pattern representation.
template <class T>
struct is_uniquely_represented