diff options
Diffstat (limited to 'common/embed.h')
-rw-r--r-- | common/embed.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/common/embed.h b/common/embed.h index 6111bf1f..5f2754f8 100644 --- a/common/embed.h +++ b/common/embed.h @@ -33,8 +33,7 @@ struct EmbeddedFile const void *content; EmbeddedFile *next = nullptr; - EmbeddedFile(const std::string &filename, const void *content) - : filename(filename), content(content) + EmbeddedFile(const std::string &filename, const void *content) : filename(filename), content(content) { next = head; head = this; |