summaryrefslogtreecommitdiff
path: root/src/asset_map.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2012-07-31 11:41:22 +0100
committerCarl Hetherington <cth@carlh.net>2012-07-31 11:41:22 +0100
commit32e93176fa91b215d68dee24e7887a21041da54c (patch)
tree1221f90e46882ef2837f554a0b8e59ea359ae916 /src/asset_map.h
parent32af25f217aa857b6ea7df3e8e18ff9df5f85dea (diff)
Use int64 in a few places.
Diffstat (limited to 'src/asset_map.h')
-rw-r--r--src/asset_map.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/asset_map.h b/src/asset_map.h
index 754528ec..34e301a5 100644
--- a/src/asset_map.h
+++ b/src/asset_map.h
@@ -10,9 +10,9 @@ public:
Chunk (xmlpp::Node const * node);
std::string path;
- int volume_index;
- int offset;
- int length;
+ int64_t volume_index;
+ int64_t offset;
+ int64_t length;
};
class AssetMapAsset : public XMLNode
@@ -33,7 +33,7 @@ public:
std::string id;
std::string creator;
- int volume_count;
+ int64_t volume_count;
std::string issue_date;
std::string issuer;
std::list<boost::shared_ptr<AssetMapAsset> > assets;