Ver Fonte

even bigger string buffer

Kajetan Johannes Hammerle há 3 anos atrás
pai
commit
cbd89b0a65
1 ficheiros alterados com 2 adições e 2 exclusões
  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