summaryrefslogtreecommitdiff
path: root/Ix
diff options
context:
space:
mode:
authorMatt <MattPD@users.noreply.github.com>2015-07-23 15:40:39 +0200
committerMatt <MattPD@users.noreply.github.com>2015-07-23 15:40:39 +0200
commitcc2c3511878964fe0287b2c88be5fce53a83efc5 (patch)
tree43a9a19eaa0e388d053ec8961972067696d20a69 /Ix
parent020bddceec18f98e22d8f3fd32cddd1ae814834c (diff)
downloadRxCpp-cc2c3511878964fe0287b2c88be5fce53a83efc5.tar.gz
Update linq_cursor.hpp
Diffstat (limited to 'Ix')
-rw-r--r--Ix/CPP/src/cpplinq/linq_cursor.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Ix/CPP/src/cpplinq/linq_cursor.hpp b/Ix/CPP/src/cpplinq/linq_cursor.hpp
index 8c95371..b5de908 100644
--- a/Ix/CPP/src/cpplinq/linq_cursor.hpp
+++ b/Ix/CPP/src/cpplinq/linq_cursor.hpp
@@ -166,7 +166,7 @@ namespace cpplinq {
--current;
}
- void skip(ptrdiff_t n) { current += n; }
+ void skip(std::ptrdiff_t n) { current += n; }
size_t size() { return fin-start; }
void position() { return current-start; }
void truncate(size_t n) {