summaryrefslogtreecommitdiff
path: root/authenc.cpp
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2017-09-30 06:19:28 -0400
committerJeffrey Walton <noloader@gmail.com>2017-09-30 06:19:28 -0400
commitbbc6ea53558c12ed7ea8880b8515432f6c7414d2 (patch)
tree3024f03459a316742655392d29939acc6edbc24d /authenc.cpp
parentabc92b2e747d845f0fcde50658e08647a4066883 (diff)
downloadcryptopp-git-bbc6ea53558c12ed7ea8880b8515432f6c7414d2.tar.gz
Comments, constants and whitespace
Diffstat (limited to 'authenc.cpp')
-rw-r--r--authenc.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/authenc.cpp b/authenc.cpp
index 0ed9cd14..bb6cf2c0 100644
--- a/authenc.cpp
+++ b/authenc.cpp
@@ -74,8 +74,7 @@ void AuthenticatedSymmetricCipherBase::Resynchronize(const byte *iv, int length)
void AuthenticatedSymmetricCipherBase::Update(const byte *input, size_t length)
{
- if (length == 0)
- return;
+ if (length == 0) {return;}
switch (m_state)
{