mirror of
https://github.com/claunia/flac.git
synced 2025-12-16 18:54:26 +00:00
rename some struct members to avoid C++ 'private' and 'protected' keywords
This commit is contained in:
@@ -47,8 +47,8 @@ extern const char *FLAC__FileDecoderStateString[];
|
||||
struct FLAC__FileDecoderProtected;
|
||||
struct FLAC__FileDecoderPrivate;
|
||||
typedef struct {
|
||||
struct FLAC__FileDecoderProtected *protected;
|
||||
struct FLAC__FileDecoderPrivate *private;
|
||||
struct FLAC__FileDecoderProtected *protected_; /* avoid the C++ keyword 'protected' */
|
||||
struct FLAC__FileDecoderPrivate *private_; /* avoid the C++ keyword 'private' */
|
||||
} FLAC__FileDecoder;
|
||||
|
||||
/***********************************************************************
|
||||
|
||||
Reference in New Issue
Block a user