Skip to content

Commit

Permalink
cleanup includes
Browse files Browse the repository at this point in the history
  • Loading branch information
moritz-h committed Jul 4, 2024
1 parent 74ba36f commit 1b1e265
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
3 changes: 1 addition & 2 deletions core/include/mmcore/LuaAPI.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@

#pragma once

#include <map>
#include <mutex>
#include <string>

Expand All @@ -14,8 +15,6 @@
#define SOL_PRINT_ERRORS 0
#include <sol/sol.hpp>

#include "mmcore/MegaMolGraph.h"

#ifdef MEGAMOL_USE_TRACY
#include <tracy/Tracy.hpp>
#endif
Expand Down
2 changes: 0 additions & 2 deletions core/include/mmcore/utility/animation/AnimationData.h
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,6 @@
#include <imgui.h>
#include <sol/sol.hpp>

#include "mmcore/MegaMolGraph.h"

namespace megamol::core::utility::animation {

using KeyTimeType = int32_t;
Expand Down
6 changes: 6 additions & 0 deletions frontend/main/src/CLIConfigParsing.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,16 @@
#include <cstdlib>
#include <filesystem>
#include <fstream>
#include <numeric>
#include <vector>

#define CXXOPTS_VECTOR_DELIMITER '\0'
#include <cxxopts.hpp>

#ifdef _WIN32
#include "Windows.h"
#endif

// find user home
static std::filesystem::path getHomeDir() {
#ifdef _WIN32
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
#include "GUIRegisterWindow.h"
#include "LuaApiResource.h"
#include "PerformanceManager.h"
#include "mmcore/MegaMolGraph.h"
#include "mmcore/utility/buildinfo/BuildInfo.h"
#include "mmcore/utility/log/Log.h"

Expand Down

0 comments on commit 1b1e265

Please sign in to comment.