diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/FileAnalyzer.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/FileAnalyzer.hpp b/include/FileAnalyzer.hpp index 4ae95ff..7be154f 100644 --- a/include/FileAnalyzer.hpp +++ b/include/FileAnalyzer.hpp @@ -56,7 +56,7 @@ namespace QuickMedia { const std::string& get_filepath() const; ContentType get_content_type() const; - size_t get_file_size() const; + int64_t get_file_size() const; std::optional<Dimensions> get_dimensions() const; std::optional<double> get_duration_seconds() const; private: @@ -65,7 +65,7 @@ namespace QuickMedia { private: std::string filepath; ContentType content_type; - size_t file_size; + int64_t file_size; std::optional<Dimensions> dimensions; std::optional<double> duration_seconds; bool loaded; |