Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Xiph.Org
flac
Commits
a7038a9a
Commit
a7038a9a
authored
Jan 22, 2003
by
Josh Coalson
Browse files
fix return type for Track::get_num_indices()
parent
0c231487
Changes
1
Hide whitespace changes
Inline
Side-by-side
include/FLAC++/metadata.h
View file @
a7038a9a
...
...
@@ -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_
;
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment