Skip to content

Commit

Permalink
maintenance
Browse files Browse the repository at this point in the history
  • Loading branch information
shad0wshayd3 authored and github-actions[bot] committed May 16, 2024
1 parent a926ea0 commit 7526397
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CommonLibF4/include/F4SE/Interfaces.h
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ namespace F4SE
std::uint32_t(F4SEAPI* GetPluginHandle)(void);
std::uint32_t(F4SEAPI* GetReleaseIndex)(void);
const void*(F4SEAPI* GetPluginInfo)(const char*); // 0.6.22+
const char*(F4SEAPI* GetSaveFolderName)(void); // 0.7.1+
const char*(F4SEAPI* GetSaveFolderName)(void); // 0.7.1+
};

struct F4SEMessagingInterface
Expand Down
8 changes: 4 additions & 4 deletions CommonLibF4/include/REL/Relocation.h
Original file line number Diff line number Diff line change
Expand Up @@ -804,14 +804,14 @@ struct std::formatter<REL::Version, CharT> : formatter<std::string, CharT>
};

#ifdef FMT_VERSION
template<class CharT>
template <class CharT>
struct fmt::formatter<REL::Version, CharT> : formatter<std::string, CharT>
{
template<class FormatContext>
auto format(const REL::Version& a_version, FormatContext& a_ctx)
template <class FormatContext>
auto format(const REL::Version& a_version, FormatContext& a_ctx)
{
return formatter<std::string, CharT>::format(a_version.string(), a_ctx);
}
}
};
#endif

Expand Down

0 comments on commit 7526397

Please sign in to comment.