Skip to content

Commit

Permalink
Fix to_seekdir function
Browse files Browse the repository at this point in the history
  • Loading branch information
rikyoz committed Aug 10, 2022
1 parent d498445 commit a75e335
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/internal/streamutil.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

namespace bit7z {

constexpr inline auto to_seekdir( uint32_t seekOrigin, std::ios_base::seekdir& way ) -> HRESULT {
inline auto to_seekdir( uint32_t seekOrigin, std::ios_base::seekdir& way ) -> HRESULT {
switch ( seekOrigin ) {
case STREAM_SEEK_SET:
way = std::ios_base::beg;
Expand Down

0 comments on commit a75e335

Please sign in to comment.