1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00
This commit is contained in:
oriolfreixa 2023-06-17 19:46:55 +02:00
parent a1961a65a0
commit ef6df48946

View file

@ -2487,10 +2487,10 @@ public:
s2 << StringRef ("def");
expect (s2 == "1234567890xyz123123def");
String sPrealloc("a");
String sPrealloc ("a");
sPrealloc.preallocateBytes (10);
sPrealloc += "bcd";
expect(sPrealloc == "abcd");
expect (sPrealloc == "abcd");
// int16
{