Skip to content

Commit 9ffd241

Browse files
[plugins] fix: Font synthesizer list initialization
1 parent e585855 commit 9ffd241

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

plugins/synthesizer/Font.kaba

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ struct MidiFont
4646
return t.synth.copy() as xfer[Synthesizer]
4747
return new Synthesizer()
4848

49-
class FontList as @noauto
49+
class FontList
5050
var fonts: MidiFont[]
5151
var dummy: MidiFont
5252

src/lib/doc/chunked.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ class FileChunkBasic;
1616

1717
class ChunkedFileParser {
1818
public:
19-
ChunkedFileParser(int _header_name_size);
19+
explicit ChunkedFileParser(int _header_name_size);
2020
virtual ~ChunkedFileParser();
2121

2222
bool read(const Path &filename, void *p);
@@ -58,7 +58,7 @@ class ChunkedFileParser {
5858

5959
class FileChunkBasic {
6060
public:
61-
FileChunkBasic(const string &_name);
61+
explicit FileChunkBasic(const string &_name);
6262
virtual ~FileChunkBasic();
6363
virtual void define_children() {};
6464
virtual void read(Stream *f) = 0;

0 commit comments

Comments
 (0)