From 2b9e07c106a7efa5ff1071cac015ec8b4d2b4d85 Mon Sep 17 00:00:00 2001 From: shad0wshayd3 Date: Fri, 6 Sep 2024 22:03:50 -0600 Subject: [PATCH] fix duplicated function name --- include/SKSE/Interfaces.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/SKSE/Interfaces.h b/include/SKSE/Interfaces.h index 0f1c8c12c..4a1086ad4 100644 --- a/include/SKSE/Interfaces.h +++ b/include/SKSE/Interfaces.h @@ -395,7 +395,7 @@ namespace SKSE constexpr void AuthorEmail(std::string_view a_email) noexcept { SetCharBuffer(a_email, std::span{ supportEmail }); } - [[nodiscard]] constexpr std::string_view GetAuthorName() const noexcept { return std::string_view{ supportEmail }; } + [[nodiscard]] constexpr std::string_view GetAuthorEmail() const noexcept { return std::string_view{ supportEmail }; } constexpr void UsesAddressLibrary() noexcept { versionIndependence |= kVersionIndependent_AddressLibraryPostAE; } constexpr void UsesSigScanning() noexcept { versionIndependence |= kVersionIndependent_Signatures; }