diff options
author | Eric Wong <normalperson@yhbt.net> | 2008-10-12 03:35:45 -0700 |
---|---|---|
committer | Eric Wong <normalperson@yhbt.net> | 2008-10-12 05:27:34 -0700 |
commit | bb106c3bf8daf366a4b4ca7229010c038f89755c (patch) | |
tree | 2db77aeed63d095a5533fb6f5d175af4cb10dade /src/songvec.h | |
parent | d60f11020f4901b806c822ef5ab2d87bbb9e4077 (diff) | |
download | mpd-bb106c3bf8daf366a4b4ca7229010c038f89755c.tar.gz mpd-bb106c3bf8daf366a4b4ca7229010c038f89755c.tar.xz mpd-bb106c3bf8daf366a4b4ca7229010c038f89755c.zip |
directory: always maintain sorted properties vectors
This allows clients to see sorted results while we're
updating the DB and removes the need for us to have
to sort manually.
We'll have to write separate routines for managing stored
playlists with songvecs eventually; but that's for another day.
Diffstat (limited to '')
-rw-r--r-- | src/songvec.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/songvec.h b/src/songvec.h index 633cf8d66..10a896052 100644 --- a/src/songvec.h +++ b/src/songvec.h @@ -9,8 +9,6 @@ struct songvec { size_t nr; }; -void songvec_sort(struct songvec *sv); - struct mpd_song *songvec_find(const struct songvec *sv, const char *url); int songvec_delete(struct songvec *sv, const struct mpd_song *del); |