Skip to content

Commit

Permalink
Bug 797748 - missing header "algorithm"
Browse files Browse the repository at this point in the history
include what you use!
  • Loading branch information
jralls committed May 13, 2020
1 parent 0c63386 commit 4e9990d
Show file tree
Hide file tree
Showing 8 changed files with 47 additions and 0 deletions.
7 changes: 7 additions & 0 deletions gnucash/import-export/csv-imp/assistant-csv-price-import.cpp
Expand Up @@ -52,6 +52,13 @@ extern "C"
#include "go-charmap-sel.h"
}

#include <algorithm>
#include <exception>
#include <iostream>
#include <memory>
#include <string>
#include <tuple>

#include "gnc-imp-settings-csv-price.hpp"
#include "gnc-import-price.hpp"
#include "gnc-tokenizer-fw.hpp"
Expand Down
7 changes: 7 additions & 0 deletions gnucash/import-export/csv-imp/assistant-csv-trans-import.cpp
Expand Up @@ -64,6 +64,13 @@ extern "C"
#include "gnc-tokenizer-fw.hpp"
#include "gnc-tokenizer-csv.hpp"

#include <algorithm>
#include <exception>
#include <iostream>
#include <memory>
#include <string>
#include <tuple>

#include <gnc-locale-utils.hpp>
#include <boost/locale.hpp>

Expand Down
2 changes: 2 additions & 0 deletions gnucash/import-export/csv-imp/gnc-imp-props-price.cpp
Expand Up @@ -34,6 +34,8 @@ extern "C" {
#include "gnc-ui-util.h"
}

#include <exception>
#include <map>
#include <string>
#include <boost/regex.hpp>
#include <boost/regex/icu.hpp>
Expand Down
5 changes: 5 additions & 0 deletions gnucash/import-export/csv-imp/gnc-imp-props-tx.cpp
Expand Up @@ -39,7 +39,12 @@ extern "C" {

}

#include <algorithm>
#include <exception>
#include <map>
#include <string>
#include <vector>

#include <boost/regex.hpp>
#include <boost/regex/icu.hpp>
#include "gnc-imp-props-tx.hpp"
Expand Down
4 changes: 4 additions & 0 deletions gnucash/import-export/csv-imp/gnc-imp-settings-csv-tx.cpp
Expand Up @@ -28,7 +28,11 @@

#include "gnc-imp-settings-csv.hpp"
#include "gnc-imp-settings-csv-tx.hpp"
#include <algorithm>
#include <memory>
#include <sstream>
#include <string>
#include <vector>

extern "C"
{
Expand Down
4 changes: 4 additions & 0 deletions gnucash/import-export/csv-imp/gnc-imp-settings-csv.cpp
Expand Up @@ -41,6 +41,10 @@ extern "C"
#include "gnc-ui-util.h"
}

#include <algorithm>
#include <iostream>
#include <string>

const std::string csv_group_prefix{"CSV-"};
const std::string no_settings{N_("No Settings")};
const std::string gnc_exp{N_("GnuCash Export Format")};
Expand Down
9 changes: 9 additions & 0 deletions gnucash/import-export/csv-imp/gnc-import-price.cpp
Expand Up @@ -35,8 +35,17 @@ extern "C" {
#include "gnc-pricedb.h"
}

#include <algorithm>
#include <exception>
#include <iostream>
#include <memory>
#include <string>
#include <tuple>
#include <vector>

#include <boost/regex.hpp>
#include <boost/regex/icu.hpp>
#include <boost/optional.hpp>

#include "gnc-import-price.hpp"
#include "gnc-imp-props-price.hpp"
Expand Down
9 changes: 9 additions & 0 deletions gnucash/import-export/csv-imp/gnc-import-tx.cpp
Expand Up @@ -32,6 +32,15 @@ extern "C" {
#include <glib/gi18n.h>
}

#include <algorithm>
#include <exception>
#include <iostream>
#include <memory>
#include <string>
#include <tuple>
#include <utility>
#include <vector>

#include <boost/regex.hpp>
#include <boost/regex/icu.hpp>

Expand Down

0 comments on commit 4e9990d

Please sign in to comment.