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

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