Procházet zdrojové kódy

bigger string buffer

Kajetan Johannes Hammerle před 5 roky
rodič
revize
b2d062f7f9
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. 1 1
      String.h

+ 1 - 1
String.h

@@ -14,7 +14,7 @@ public:
     uint getLength() const;
     
 private:
-    static const uint LENGTH = 2048;
+    static const uint LENGTH = 4096;
     uint length;
     char data[LENGTH];
 };