diff options
author | Jan Nieuwenhuizen <janneke@gnu.org> | 2006-02-11 11:35:18 +0000 |
---|---|---|
committer | Jan Nieuwenhuizen <janneke@gnu.org> | 2006-02-11 11:35:18 +0000 |
commit | 31568c504806f35aac420a394c9eab07abd9faa7 (patch) | |
tree | e7ee5c7fa3217c501d868a94cd3530543e8f4c9e /lily/chord-name-engraver.cc | |
parent | e0d9c686b107b0d07a67f40b54a09009867620bf (diff) |
* flower/include/std-string.hh:
* flower/include/std-vector.hh: Finish std:: conversion; move
flower extensions from std:: namespace. Update users.
* lily/include/lily-proto.hh: Replace Link_array__*_ macros by
their expansion to vector<*>. Update users.
Diffstat (limited to 'lily/chord-name-engraver.cc')
-rw-r--r-- | lily/chord-name-engraver.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lily/chord-name-engraver.cc b/lily/chord-name-engraver.cc index a5da925e60..963c3033f2 100644 --- a/lily/chord-name-engraver.cc +++ b/lily/chord-name-engraver.cc @@ -31,7 +31,7 @@ private: void add_note (Music *); Item *chord_name_; - Link_array__Music_ notes_; + vector<Music*> notes_; SCM last_chord_; }; |