summaryrefslogtreecommitdiff
path: root/documentation
diff options
context:
space:
mode:
authorEmiel Bruijntjes <emiel.bruijntjes@copernica.com>2014-07-08 15:03:43 +0200
committerEmiel Bruijntjes <emiel.bruijntjes@copernica.com>2014-07-08 15:03:43 +0200
commitd0dbed9ed21123455adcd0277991036ad9bdbb06 (patch)
treece05d22dc2f730d5a9eb479b3e198622fda6c10c /documentation
parentca60a32c601fe9b0236d3d4717c7b94368a3c172 (diff)
in the documentation and source code comments, the old method name Value::resize() was used, while the actual name is reserve(), solves issue #102
Diffstat (limited to 'documentation')
-rw-r--r--documentation/variables.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/documentation/variables.html b/documentation/variables.html
index 98a6d49..dfc5b18 100644
--- a/documentation/variables.html
+++ b/documentation/variables.html
@@ -223,10 +223,10 @@ Php::Value readExample2(int fd)
// result variable
Php::Value result;
- // resize the buffer to 4096 bytes, the resize() method resizes
+ // resize the buffer to 4096 bytes, the reserve() method resizes
// the internal buffer to the appropriate size, and returns a pointer
// to the buffer
- char *buffer = result.resize(4096);
+ char *buffer = result.reserve(4096);
// read in the bytes directly into the just allocated buffer
ssize_t bytes = read(fd, buffer, 4096);
@@ -235,7 +235,7 @@ Php::Value readExample2(int fd)
// resize the buffer to the actual number of bytes in it (this
// is necessary, otherwise the PHP strlen() returns 4096 even
// when less bytes were available
- result.resize(bytes);
+ result.reserve(bytes);
// return the result
return result;