File tree 2 files changed +4
-2
lines changed
2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -28,7 +28,8 @@ namespace ESM
28
28
int32_t getX () const { return mX ; }
29
29
int32_t getY () const { return mY ; }
30
30
31
- friend inline constexpr auto tie (const ESM3ExteriorCellRefId& value) noexcept
31
+ friend inline constexpr std::tuple<const int32_t &, const int32_t &> tie (
32
+ const ESM3ExteriorCellRefId& value) noexcept
32
33
{
33
34
return std::tie (value.mX , value.mY );
34
35
}
Original file line number Diff line number Diff line change @@ -25,7 +25,8 @@ namespace ESM
25
25
26
26
std::string toDebugString () const ;
27
27
28
- friend inline constexpr auto tie (const IndexRefId& value) noexcept
28
+ friend inline constexpr std::tuple<const ESM::RecNameInts&, const uint32_t &> tie (
29
+ const IndexRefId& value) noexcept
29
30
{
30
31
return std::tie (value.mRecordType , value.mValue );
31
32
}
You can’t perform that action at this time.
0 commit comments