Removed a debug statement that got in the way

This commit is contained in:
tastytea 2018-11-25 07:31:06 +01:00
parent 7f87ab969c
commit 63540add66
Signed by: tastytea
GPG Key ID: CFC39497F1B26E07
2 changed files with 1 additions and 2 deletions

View File

@ -1,6 +1,6 @@
cmake_minimum_required (VERSION 3.2) cmake_minimum_required (VERSION 3.2)
project(libravatarserv project(libravatarserv
VERSION 0.2.2 VERSION 0.2.3
LANGUAGES CXX LANGUAGES CXX
) )

View File

@ -68,7 +68,6 @@ int main()
if (pos_size != std::string::npos) if (pos_size != std::string::npos)
{ {
size = static_cast<uint16_t>(std::stoul(digest.substr(pos_size + 2))); size = static_cast<uint16_t>(std::stoul(digest.substr(pos_size + 2)));
cout << size << endl;
} }
digest = digest.substr(0, pos_digest); digest = digest.substr(0, pos_digest);
} }