Correct ampersands as well

This commit is contained in:
mathieui
2016-01-21 21:27:56 +01:00
parent 3e283ea9f1
commit f15ffda5a7
17 changed files with 86 additions and 86 deletions

View File

@ -31,7 +31,7 @@ template <typename K, typename V>
class LinearDiskCacheReader
{
public:
virtual void Read(const K &key, const V* value, u32 value_size) = 0;
virtual void Read(const K& key, const V* value, u32 value_size) = 0;
};
// Dead simple unsorted key-value store with append functionality.
@ -142,7 +142,7 @@ public:
}
// Appends a key-value pair to the store.
void Append(const K &key, const V* value, u32 value_size)
void Append(const K& key, const V* value, u32 value_size)
{
// TODO: Should do a check that we don't already have "key"? (I think each caller does that already.)
Write(&value_size);