Skip to content

Commit

Permalink
make MSVC 2019 default /std:c++14 happy (this works with MSVC 2019 /s…
Browse files Browse the repository at this point in the history
…td:c++latest)
  • Loading branch information
Marcus10110 committed Oct 9, 2024
1 parent 63378e7 commit cf21cf1
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/MCS04AnalyzerResults.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,8 @@ void MCS04AnalyzerResults::GenerateBubbleText( U64 frame_index, Channel& channel
{
ClearResultStrings();
Frame frame = GetFrame( frame_index );
union MCS4data data = {
.mData1 = frame.mData1,
};
union MCS4data data;
data.mData1 = frame.mData1;
char reg_str[ 4 ], number_str[ 64 ];

ClearResultStrings();
Expand Down

0 comments on commit cf21cf1

Please sign in to comment.