Skip to content

Commit

Permalink
Fix MSVC compilation
Browse files Browse the repository at this point in the history
  • Loading branch information
albin-johansson committed May 11, 2024
1 parent cd31eb4 commit 8586f77
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions source/core/src/tactile/core/document/document_manager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

#include "tactile/core/document/document_manager.hpp"

#include "tactile/core/document/document.hpp"
#include "tactile/core/entity/registry.hpp"
#include "tactile/core/log/logger.hpp"
#include "tactile/core/map/map.hpp"
Expand Down
2 changes: 1 addition & 1 deletion source/core/src/tactile/core/platform/dynamic_library.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ class Win32DynamicLibrary final : public IDynamicLibrary
}

[[nodiscard]]
static auto load(const Path& path) -> Unique<UnixDynamicLibrary>
static auto load(const Path& path) -> Unique<Win32DynamicLibrary>
{
const auto handle = LoadLibraryA(path.string().c_str());

Expand Down
1 change: 1 addition & 0 deletions source/core/src/tactile/core/tactile_editor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@

#include "tactile/base/int.hpp"
#include "tactile/core/debug/validation.hpp"
#include "tactile/core/log/logger.hpp"
#include "tactile/core/ui/i18n/language_parser.hpp"
#include "tactile/core/ui/shortcuts.hpp"
#include "tactile/render/renderer.hpp"
Expand Down
1 change: 1 addition & 0 deletions source/main/src/tactile/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
#include <memory> // make_unique
#include <utility> // move

#include <SDL2/SDL_main.h>
#include <imgui.h>

#include "tactile/base/prelude.hpp"
Expand Down

0 comments on commit 8586f77

Please sign in to comment.