rename some struct members to avoid C++ 'private' and 'protected' keywords

This commit is contained in:
Josh Coalson
2001-08-16 20:07:29 +00:00
parent 07afedcb32
commit fa697a98bd
6 changed files with 959 additions and 959 deletions

View File

@@ -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;
/***********************************************************************