Skip to content

Commit

Permalink
Clean up header includes
Browse files Browse the repository at this point in the history
Signed-off-by: Christoph Niethammer <[email protected]>
  • Loading branch information
cniethammer committed Dec 18, 2024
1 parent 41a1dbb commit 291a747
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 11 deletions.
4 changes: 2 additions & 2 deletions src/plugins/VectorizationTuner.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ enum MoleculeCntIncreaseTypeEnum{
both //!< both, do linear and exponential measurements, linear measurements will stop after 32 molecules.
};


#include <vector>
#include <fstream>
#include <string>
#include <vector>

#include "particleContainer/adapter/CellProcessor.h"
#include "particleContainer/adapter/FlopCounter.h"
Expand Down
2 changes: 0 additions & 2 deletions src/utils/Logger.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@

#include "Logger.h"

#include <memory>

namespace Log {

std::unique_ptr<Logger> global_log;
Expand Down
13 changes: 6 additions & 7 deletions src/utils/Logger.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,15 @@

#define USE_GETTIMEOFDAY

#include <iostream>
#include <fstream>
#include <cstdlib>
#include <chrono>
#include <ctime>
#include <cctype>
#include <iomanip>
#include <iostream>
#include <map>
#include <ctime>
#include <string>
#include <sstream>
#include <chrono>
#include <memory>
#include <string>
#include <utility>

#ifdef ENABLE_MPI
#include <mpi.h>
Expand Down

0 comments on commit 291a747

Please sign in to comment.