build: == Dependency change == ChronoSync now depends on ndn-cxx library
diff --git a/src/sync-digest.h b/src/sync-digest.h
index ecc8522..881b252 100644
--- a/src/sync-digest.h
+++ b/src/sync-digest.h
@@ -17,7 +17,7 @@
*
* Author: Zhenkai Zhu <zhenkai@cs.ucla.edu>
* Chaoyi Bian <bcy@pku.edu.cn>
- * Alexander Afanasyev <alexander.afanasyev@ucla.edu>
+ * Alexander Afanasyev <alexander.afanasyev@ucla.edu>
*/
#ifndef SYNC_DIGEST_H
@@ -47,7 +47,7 @@
*/
bool
empty () const;
-
+
/**
* @brief Reset digest to the initial state
*/
@@ -84,7 +84,7 @@
bool
operator != (const Digest &digest) const
{ return ! (*this == digest); }
-
+
/**
* @brief Add existing digest to digest calculation
@@ -116,11 +116,11 @@
*/
bool
isZero () const;
-
+
private:
Digest &
operator = (Digest &digest) { (void)digest; return *this; }
-
+
/**
* @brief Add size bytes of buffer to the hash
*/
@@ -132,7 +132,7 @@
friend std::istream &
operator >> (std::istream &is, Digest &digest);
-
+
private:
EVP_MD_CTX *m_context;
std::vector<uint8_t> m_buffer;