Skip to content

Commit

Permalink
Update CommonLibF4/include/RE/Bethesda/BSRandom.h
Browse files Browse the repository at this point in the history
Co-authored-by: qudix <[email protected]>
  • Loading branch information
FalloutCascadia and qudix authored Jun 14, 2024
1 parent e0fe768 commit 27cb4dd
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions CommonLibF4/include/RE/Bethesda/BSRandom.h
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,12 @@ namespace RE
{
namespace BSRandom
{
inline std::uint32_t UnsignedInt(std::uint32_t aMin, std::uint32_t aMax)
inline std::uint32_t UnsignedInt(std::uint32_t a_min, std::uint32_t a_max)
{
using func_t = decltype(&BSRandom::UnsignedInt);
static REL::Relocation<func_t> func{ REL::ID(2267950) };
return (aMin, aMax);
return func(a_min, a_max);
}
}
}
}

Check failure on line 15 in CommonLibF4/include/RE/Bethesda/BSRandom.h

View workflow job for this annotation

GitHub Actions / windows (debug, msvc)

syntax error: '}'

Check failure on line 15 in CommonLibF4/include/RE/Bethesda/BSRandom.h

View workflow job for this annotation

GitHub Actions / windows (debug, msvc)

syntax error: missing ';' before '}'

Check failure on line 15 in CommonLibF4/include/RE/Bethesda/BSRandom.h

View workflow job for this annotation

GitHub Actions / windows (release, msvc)

syntax error: '}'

Check failure on line 15 in CommonLibF4/include/RE/Bethesda/BSRandom.h

View workflow job for this annotation

GitHub Actions / windows (release, msvc)

syntax error: missing ';' before '}'

0 comments on commit 27cb4dd

Please sign in to comment.