removed a few useless consts

metadata
Wenzel Jakob 2011-08-16 13:11:03 -04:00
parent 6aacc75041
commit 30f000acfa
1 changed files with 4 additions and 4 deletions

View File

@ -102,16 +102,16 @@ public:
inline const float *getFloatData() const { return (const float *) m_data; }
/// Return the bitmap width
inline const int getWidth() const { return m_width; }
inline int getWidth() const { return m_width; }
/// Return the bitmap height
inline const int getHeight() const { return m_height; }
inline int getHeight() const { return m_height; }
/// Return the bitmap's bits per pixel
inline const int getBitsPerPixel() const { return m_bpp; }
inline int getBitsPerPixel() const { return m_bpp; }
/// Return the bitmap size in bytes
inline const size_t getSize() const { return m_size; }
inline size_t getSize() const { return m_size; }
/// Return some human-readable information about this bitmap
std::string toString() const;