Skip to content

Commit

Permalink
bugfix: iostream includes
Browse files Browse the repository at this point in the history
  • Loading branch information
tschaume committed Nov 3, 2014
1 parent 7ece42e commit 3c9ab95
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion autogen.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash

VERSION=0.6.6
VERSION=0.7
MIN_BOOST_VERSION=1.50
MIN_CURL_VERSION=7.15.5

Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
AC_INIT([ckon], [0.6.6])
AC_INIT([ckon], [0.7])
AC_CONFIG_MACRO_DIR([m4])
m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
AC_CONFIG_AUX_DIR(config)
Expand Down
1 change: 1 addition & 0 deletions src/aux/utils.cc
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
#include "src/aux/utils.h"
#include <boost/foreach.hpp>
#include <boost/algorithm/string.hpp>
#include <iostream>
#include "src/cmdline/cmdline.h"

utils::utils() {}
Expand Down
1 change: 1 addition & 0 deletions src/ckon.cc
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
#include <boost/foreach.hpp>
#include <boost/algorithm/string.hpp>

#include <iostream>
#include <string>
#include <vector>
#include <algorithm>
Expand Down
1 change: 1 addition & 0 deletions src/clean/clean.cc
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
// Copyright (c) 2013 Patrick Huck
#include "src/clean/clean.h"
#include <iostream>

clean::clean(const std::string& src_dir) {
fs::recursive_directory_iterator dir_end;
Expand Down
1 change: 1 addition & 0 deletions src/cmdline/cmdline.cc
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
#include <boost/iostreams/stream.hpp>
#include <boost/iostreams/tee.hpp>
#include <boost/algorithm/string.hpp>
#include <iostream>
#include <curl/curl.h>
#include <cstdio>
#include "src/clean/clean.h"
Expand Down
1 change: 1 addition & 0 deletions src/helpers/helpers.cc
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
#include <boost/foreach.hpp>
#include <boost/range/sub_range.hpp>
#include <boost/filesystem/operations.hpp>
#include <iostream>
#include "src/cmdline/cmdline.h"
#include "src/aux/myregex.h"
#include "src/aux/utils.h"
Expand Down

0 comments on commit 3c9ab95

Please sign in to comment.