Explorar el Código

even bigger string buffer

Kajetan Johannes Hammerle hace 3 años
padre
commit
cbd89b0a65
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. 2 2
      String.h

+ 2 - 2
String.h

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