We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0e41000 commit db86e05Copy full SHA for db86e05
src/core/common/ojph_file.h
@@ -206,15 +206,15 @@ namespace ojph {
206
/**
207
* @brief Call this function to get the used size of the memory file.
208
*
209
- * @return the used size of the memory file.
+ * @return the used size of the memory file in bytes.
210
*/
211
size_t get_used_size() const { return used_size; }
212
213
214
* @brief Call this function to get the total buffer size of the memory
215
- * file including unused space.
+ * file including unused space (this is the allocated memory).
216
217
- * @return the full size of the memory file.
+ * @return the full size of the memory file in bytes.
218
219
size_t get_buf_size() const { return buf_size; }
220
0 commit comments