summaryrefslogtreecommitdiffstats
path: root/src/corelib
diff options
context:
space:
mode:
authorLeonard Lee <leonard.lee@digia.com>2013-08-22 16:37:17 +0200
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-09-02 13:28:52 +0200
commit16f3c84e30ba82481d0d8ffdc6a239452a45c8bf (patch)
tree71d8c4c83d10ab71fb5dfecedc2c8a0658b9695a /src/corelib
parent99362fb7f25a88829c2d824ebfe6da61d4d7b35f (diff)
Remove the size limit of QByteArray information.
The information is explaining implementation details rather than on how to use it effectively. The size limit of QByteArray may vary depending on available memory. Task-number: QTBUG-33037 Change-Id: I361316422ade3624a0c2864d93f87caeb654f4d7 Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
Diffstat (limited to 'src/corelib')
-rw-r--r--src/corelib/tools/qbytearray.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/corelib/tools/qbytearray.cpp b/src/corelib/tools/qbytearray.cpp
index e993855e7e..6ce17e5e13 100644
--- a/src/corelib/tools/qbytearray.cpp
+++ b/src/corelib/tools/qbytearray.cpp
@@ -645,8 +645,6 @@ static inline char qToLower(char c)
store raw binary data, and when memory conservation is critical
(e.g., with Qt for Embedded Linux).
- The maximum array size of a QByteArray is under 2^30.
-
One way to initialize a QByteArray is simply to pass a \c{const
char *} to its constructor. For example, the following code
creates a byte array of size 5 containing the data "Hello":