From 21bbe2714c5ebfeb8c564100a90308d6a6d81f8d Mon Sep 17 00:00:00 2001 From: Ole Christian Eidheim Date: Tue, 22 Jul 2014 08:30:47 +0200 Subject: [PATCH] Removed cout in the last example --- main_https.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/main_https.cpp b/main_https.cpp index 139429e..c54a8a7 100644 --- a/main_https.cpp +++ b/main_https.cpp @@ -85,7 +85,6 @@ int main() { size_t current_pos=0; size_t pos; while((pos=path.find('.', current_pos))!=string::npos && pos!=last_pos) { - cout << pos << endl; current_pos=pos; path.erase(pos, 1); last_pos--;