Debugging Leaf, FullLeaf, DiffLeaf
Added unit new tests
diff --git a/model/sync-digest.h b/model/sync-digest.h
index d98868e..52072d2 100644
--- a/model/sync-digest.h
+++ b/model/sync-digest.h
@@ -61,12 +61,18 @@
/**
* @brief Obtain a short version of the hash (just first sizeof(size_t) bytes
*
- * Side effect: Finalize will be called on `this'
+ * Side effect: finalize() will be called on `this'
*/
std::size_t
getHash ();
/**
+ * @brief Finalize digest. All subsequent calls to "operator <<" will fire an exception
+ */
+ void
+ finalize ();
+
+ /**
* @brief Compare two full digests
*
* Side effect: Finalize will be called on `this' and `digest'
@@ -107,12 +113,6 @@
operator = (Digest &digest) { return *this; }
/**
- * @brief Finalize digest. All subsequent calls to "operator <<" will fire an exception
- */
- void
- finalize ();
-
- /**
* @brief Add size bytes of buffer to the hash
*/
void