Bug 797748 - missing header "algorithm"

include what you use!
This commit is contained in:
John Ralls 2020-05-13 12:52:16 -07:00
parent 0c633866fd
commit 4e9990ddb5
8 changed files with 47 additions and 0 deletions

View File

@ -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"

View File

@ -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>

View File

@ -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>

View File

@ -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"

View File

@ -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"
{

View File

@ -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")};

View File

@ -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"

View File

@ -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>