uint -> unsigned int (same thing but 'uint' does not exist on all platforms apparently)

This commit is contained in:
Ryan Curtin
2010-04-21 17:14:00 +00:00
parent c560a547f5
commit 0e9913e5c7
2 changed files with 7 additions and 7 deletions
+5 -5
View File
@@ -343,8 +343,8 @@ class IoStats {
private:
uint64 n_read_bytes_;
uint64 n_write_bytes_;
uint n_reads_;
uint n_writes_;
unsigned int n_reads_;
unsigned int n_writes_;
OT_DEF(IoStats) {
OT_MY_OBJECT(n_read_bytes_);
@@ -360,7 +360,7 @@ class IoStats {
}
/** Gets the number of read operations performed. */
uint n_reads() const {
unsigned int n_reads() const {
return n_reads_;
}
/** Gets the number of bytes read. */
@@ -368,7 +368,7 @@ class IoStats {
return n_read_bytes_;
}
/** Gets the number of write operations performed. */
uint n_writes() const {
unsigned int n_writes() const {
return n_writes_;
}
/** Gets the number of bytes written. */
@@ -376,7 +376,7 @@ class IoStats {
return n_write_bytes_;
}
/** Gets the number of read or write operations total. */
uint n_io() const {
unsigned int n_io() const {
return n_reads_ + n_writes_;
}
/** Gets the number bytes read or writen total. */
+2 -2
View File
@@ -332,8 +332,8 @@ class ZCacheIterImpl_ {
private:
Element *element_;
uint stride_;
uint left_;
unsigned int stride_;
unsigned int left_;
CacheArray<BaseElement> *cache_;
BlockDevice::blockid_t blockid_;