fixed duplicate set writing bug + enforced unicode strings

This commit is contained in:
TomTkacz
2025-03-11 03:24:31 -05:00
parent f9aa4f9577
commit 06f94bb502
2 changed files with 9 additions and 5 deletions
+1 -1
View File
@@ -408,7 +408,7 @@ public:
Image generate(const Options&) const override;
bool operator == (const GeneratedImage& that) const override;
inline String toString() { return filepath; }
inline String ExternalImage::toCode() const override { return "<image>"; }
inline String toCode() const override { return _("<image>"); }
private:
String filepath;
};