Make the size() method const

llvm-svn: 18852
This commit is contained in:
Reid Spencer 2004-12-13 02:58:51 +00:00
parent 285b0e4cda
commit 1e51643433
2 changed files with 3 additions and 3 deletions

View File

@ -94,7 +94,7 @@ namespace sys {
/// This function returns the number of bytes in the file.
/// @throws std::string if an error occurs
size_t size();
size_t size() const;
/// @}
/// @name Mutators
@ -137,7 +137,7 @@ namespace sys {
sys::Path path_; ///< Path to the file.
int options_; ///< Options used to create the mapping
void* base_; ///< Pointer to the base memory address
MappedFileInfo* info_; ///< Platform specific info for the mapping
mutable MappedFileInfo* info_; ///< Platform specific info for the mapping
/// @}
/// @name Disabled

View File

@ -108,7 +108,7 @@ void* MappedFile::map() {
return base_;
}
size_t MappedFile::size() {
size_t MappedFile::size() const {
assert(info_ && "MappedFile not initialized");
return info_->sbuf_.st_size;
}