blob: 8d12037d48b03097ed88fa8616141ed7e55d117e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
--- src/datastream.h.orig Wed Jun 2 12:44:31 2004
+++ src/datastream.h Wed Jun 2 12:51:48 2004
@@ -63,7 +63,13 @@
return 0;
}
- virtual int showmanyc() {
+ virtual
+#if !defined(ODBCXX_HAVE_ISO_CXXLIB)
+ int
+#else
+ std::streamsize
+#endif
+ showmanyc() {
if(this->gptr() < this->egptr()) {
return this->egptr() - this->gptr();
}
|