summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README4
1 files changed, 2 insertions, 2 deletions
diff --git a/README b/README
index df8f0e1..3bc8888 100644
--- a/README
+++ b/README
@@ -76,11 +76,11 @@ your calling file, and link against the compiled library.
There are many ways to call Snappy, but the simplest possible is
- snappy::Compress(input, &output);
+ snappy::Compress(input.data(), input.size(), &output);
and similarly
- snappy::Uncompress(input, &output);
+ snappy::Uncompress(input.data(), input.size(), &output);
where "input" and "output" are both instances of std::string.