Explorar el Código

bigger string buffer

Kajetan Johannes Hammerle hace 4 años
padre
commit
b2d062f7f9
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  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];
 };