changeset 98:cfcafe36bda4

Irccd: std::accumulate is in numeric, not algorithm
author David Demelier <markand@malikania.fr>
date Fri, 22 Apr 2016 13:06:56 +0200
parents 30dd01c8ac4e
children 9a636d4ab8a2
files lib/irccd/command.cpp
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/lib/irccd/command.cpp	Thu Apr 21 13:24:26 2016 +0200
+++ b/lib/irccd/command.cpp	Fri Apr 22 13:06:56 2016 +0200
@@ -16,8 +16,8 @@
  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  */
 
-#include <algorithm>
 #include <iomanip>
+#include <numeric>
 #include <sstream>
 
 #include <irccd/logger.hpp>