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:
@@ -66,8 +66,8 @@ extern const char *FLAC__StreamDecoderErrorStatusString[];
|
||||
struct FLAC__StreamDecoderProtected;
|
||||
struct FLAC__StreamDecoderPrivate;
|
||||
typedef struct {
|
||||
struct FLAC__StreamDecoderProtected *protected;
|
||||
struct FLAC__StreamDecoderPrivate *private;
|
||||
struct FLAC__StreamDecoderProtected *protected_; /* avoid the C++ keyword 'protected' */
|
||||
struct FLAC__StreamDecoderPrivate *private_; /* avoid the C++ keyword 'private' */
|
||||
} FLAC__StreamDecoder;
|
||||
|
||||
/***********************************************************************
|
||||
|
||||
Reference in New Issue
Block a user