A missing '/endcode' tag in include/FLAC/metadata.h causes the FLAC__bool 
FLAC__metadata_object_cuesheet_set_track() method to not appear in the docs, 
and the next method (insert_track) to get the documentation of set_track. It 
also creates a broken link to set_track in the FLAC++ docs.

Attached is a tiny patch to fix this. I was actually working on some other 
(small) patches, but this cropped up and now I'm going to be late for work, so 
those will have to wait for another day...

Bas
diff --git a/include/FLAC/metadata.h b/include/FLAC/metadata.h
index c98f74d..53b32f9 100644
--- a/include/FLAC/metadata.h
+++ b/include/FLAC/metadata.h
@@ -1986,7 +1986,7 @@ FLAC_API FLAC__bool FLAC__metadata_object_cuesheet_resize_tracks(FLAC__StreamMet
  *    \code object->type == FLAC__METADATA_TYPE_CUESHEET \endcode
  *    \code track_num < object->data.cue_sheet.num_tracks \endcode
  *    \code (track->indices != NULL && track->num_indices > 0) ||
- * (track->indices == NULL && track->num_indices == 0)
+ * (track->indices == NULL && track->num_indices == 0) \endcode
  * \retval FLAC__bool
  *    \c false if \a copy is \c true and malloc() fails, else \c true.
  */
_______________________________________________
flac-dev mailing list
flac-dev@xiph.org
http://lists.xiph.org/mailman/listinfo/flac-dev

Reply via email to