From a7038a9a310d85b3e893a8cc5c395ae9815064e7 Mon Sep 17 00:00:00 2001 From: Josh Coalson Date: Wed, 22 Jan 2003 20:16:20 +0000 Subject: [PATCH] fix return type for Track::get_num_indices() --- include/FLAC++/metadata.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/FLAC++/metadata.h b/include/FLAC++/metadata.h index 3db5d05..5c882e9 100644 --- a/include/FLAC++/metadata.h +++ b/include/FLAC++/metadata.h @@ -606,7 +606,7 @@ namespace FLAC { inline unsigned get_type() const { return object_->type; } inline bool get_pre_emphasis() const { return object_->pre_emphasis; } - inline bool get_num_indices() const { return object_->num_indices; } + inline FLAC__byte get_num_indices() const { return object_->num_indices; } ::FLAC__StreamMetadata_CueSheet_Index get_index(unsigned i) const; inline const ::FLAC__StreamMetadata_CueSheet_Track *get_track() const { return object_; } -- 2.7.4