Browse Source

bigger string buffer

Kajetan Johannes Hammerle 3 years ago
parent
commit
b2d062f7f9
1 changed files with 1 additions and 1 deletions
  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];
 };