Skip to content

Commit cf21cf1

Browse files
committed
make MSVC 2019 default /std:c++14 happy (this works with MSVC 2019 /std:c++latest)
1 parent 63378e7 commit cf21cf1

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/MCS04AnalyzerResults.cpp

+2-3
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,8 @@ void MCS04AnalyzerResults::GenerateBubbleText( U64 frame_index, Channel& channel
2020
{
2121
ClearResultStrings();
2222
Frame frame = GetFrame( frame_index );
23-
union MCS4data data = {
24-
.mData1 = frame.mData1,
25-
};
23+
union MCS4data data;
24+
data.mData1 = frame.mData1;
2625
char reg_str[ 4 ], number_str[ 64 ];
2726

2827
ClearResultStrings();

0 commit comments

Comments
 (0)