summaryrefslogtreecommitdiff
path: root/include/FLAC++/metadata.h
diff options
context:
space:
mode:
authorJosh Coalson <jcoalson@users.sourceforce.net>2003-01-22 20:16:20 +0000
committerJosh Coalson <jcoalson@users.sourceforce.net>2003-01-22 20:16:20 +0000
commita7038a9a310d85b3e893a8cc5c395ae9815064e7 (patch)
tree720aa0b5496f78a8b09082e47d33565193b3d05e /include/FLAC++/metadata.h
parent0c231487c61080b5059c3392031e796d2152aad5 (diff)
downloadflac-a7038a9a310d85b3e893a8cc5c395ae9815064e7.tar.gz
fix return type for Track::get_num_indices()
Diffstat (limited to 'include/FLAC++/metadata.h')
-rw-r--r--include/FLAC++/metadata.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/FLAC++/metadata.h b/include/FLAC++/metadata.h
index 3db5d05a..5c882e92 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_; }