StringHasher: sanitize includes

- try to fix CI warning "Found C system header after other header."
- remove unneeded includes
- sort includes
This commit is contained in:
Uwe
2022-10-01 05:14:05 +02:00
parent 015d6396ff
commit db8729ec74
2 changed files with 21 additions and 25 deletions
+17 -22
View File
@@ -20,33 +20,28 @@
* *
****************************************************************************/
#include "PreCompiled.h"
#ifndef _PreComp_
#endif
#include <deque>
#include <boost/io/ios_state.hpp>
#include <boost/iostreams/device/array.hpp>
#include <boost/iostreams/stream.hpp>
#include <boost/algorithm/string/predicate.hpp>
#include <boost/algorithm/string/split.hpp>
#include <boost/algorithm/string/classification.hpp>
#include <boost/bimap.hpp>
#include <boost/bimap/unordered_set_of.hpp>
#include <boost/bimap/set_of.hpp>
#include <QHash>
#include <QCryptographicHash>
#include <Base/Console.h>
#include <Base/Exception.h>
#include <Base/Writer.h>
#include <QHash>
#include <Base/Reader.h>
#include <App/StringHasher.h>
#include <App/StringHasherPy.h>
#include <App/StringIDPy.h>
#include <App/MappedElement.h>
#include <App/DocumentParams.h>
#include <Base/Writer.h>
#include <boost/algorithm/string/classification.hpp>
#include <boost/algorithm/string/split.hpp>
#include <boost/bimap.hpp>
#include <boost/bimap/set_of.hpp>
#include <boost/bimap/unordered_set_of.hpp>
#include <boost/iostreams/stream.hpp>
#include "StringHasher.h"
#include "StringHasherPy.h"
#include "DocumentParams.h"
#include "MappedElement.h"
#include "StringIDPy.h"
FC_LOG_LEVEL_INIT("App",true,true)
+4 -3
View File
@@ -23,16 +23,17 @@
#ifndef APP_STRINGID_H
#define APP_STRINGID_H
#include <memory>
#include <bitset>
#include <memory>
#include <QByteArray>
#include <QVector>
#include <CXX/Objects.hxx>
#include <Base/Bitmask.h>
#include <Base/Handle.h>
#include <Base/Persistence.h>
#include <Base/Bitmask.h>
#include <CXX/Objects.hxx>
namespace Data{
class MappedName;