Skip to content

Commit

Permalink
CrashHandler Added missing include guard 10/25/2024 | 24w43b2
Browse files Browse the repository at this point in the history
  • Loading branch information
GamesTrap committed Oct 25, 2024
1 parent fe39a37 commit 26c48af
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 2 deletions.
4 changes: 4 additions & 0 deletions SITREPS.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5320,3 +5320,7 @@ SITREP 10/23/2024|24w43b1
- GitHub Actions Windows Runner Updated and rebuild image ~<30 mins
- Updated GitHub Action workflows (Ubuntu 24.10, GCC 14, Clang 19) ~<10 mins
- Updated Steamworks SDK support to v1.60 ~<10 mins

SITREP 10/25/2024|24w43b2
- Changed TRAP Engine version to 24w43b2(0.11.29)
- CrashHandler Added missing include guard ~<5 mins
2 changes: 1 addition & 1 deletion TRAP/src/Core/Base.h
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@
//-------------------------------------------------------------------------------------------------------------------//

/// @brief TRAP version number created with TRAP_MAKE_VERSION
inline constexpr TRAP::SemanticVersion<0, 11, 28> TRAP_VERSION{};
inline constexpr TRAP::SemanticVersion<0, 11, 29> TRAP_VERSION{};

//-------------------------------------------------------------------------------------------------------------------//

Expand Down
2 changes: 1 addition & 1 deletion TRAP/src/Log/Log.h
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ namespace TRAP
/// @threadsafe
void Clear() noexcept;

static constexpr auto WindowVersion = "[24w43b1]";
static constexpr auto WindowVersion = "[24w43b2]";
static constexpr auto WindowPrefix = "[Window] ";
static constexpr auto WindowIconPrefix = "[Window][Icon] ";
static constexpr auto ConfigPrefix = "[Config] ";
Expand Down
5 changes: 5 additions & 0 deletions TRAP/src/Utils/CrashHandler/CrashHandler.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
#ifndef TRAP_CRASHHANDLER_H
#define TRAP_CRASHHANDLER_H

#include <cstdint>
#include <fmt/format.h>
#include <type_traits>
Expand Down Expand Up @@ -81,3 +84,5 @@ TRAP::Utils::CrashHandler::CrashHandler(const F& crashHandler)
m_exceptionHandler = AddVectoredExceptionHandler(1, crashHandler);
#endif
}

#endif /*TRAP_CRASHHANDLER_H*/

0 comments on commit 26c48af

Please sign in to comment.