Skip to content

Commit

Permalink
fix order of includes and pragma once
Browse files Browse the repository at this point in the history
  • Loading branch information
FG-TUM committed Apr 9, 2024
1 parent 77ae02b commit 53417f2
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/ladds/io/ConfigReader.h
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
* @date 20.12.21
*/

#pragma once

#include <autopas/utils/ArrayUtils.h>
#include <autopas/utils/StringUtils.h>
#include <autopas/utils/WrapMPI.h>
Expand All @@ -13,7 +15,6 @@
#include "Logger.h"
#include "ladds/io/hdf5/HDF5Definitions.h"
#include "yaml-cpp/yaml.h"
#pragma once

namespace LADDS {
/**
Expand Down Expand Up @@ -226,4 +227,4 @@ class ConfigReader {
*/
std::map<std::string, std::string> parsedValues{};
};
}; // namespace LADDS
}; // namespace LADDS

0 comments on commit 53417f2

Please sign in to comment.