Skip to content

Commit 29be5f9

Browse files
committed
c++: name RenderBlendResult struct
The compiler complains otherwise with -Wnon-c-typedef-for-linkage
1 parent 4584ff9 commit 29be5f9

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/SubtitleOctopus.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ const float MAX_UINT8_CAST = 255.9 / 255;
7777

7878
#define CLAMP_UINT8(value) ((value > MIN_UINT8_CAST) ? ((value < MAX_UINT8_CAST) ? (int)(value * 255) : 255) : 0)
7979

80-
typedef struct {
80+
typedef struct RenderBlendResult {
8181
public:
8282
int changed;
8383
double blend_time;

0 commit comments

Comments
 (0)