Skip to content

Commit

Permalink
fix build with clang 11: destructor + alias
Browse files Browse the repository at this point in the history
clang 11 generate such error for coding/files_container.cpp:
destructor cannot be declared using a type alias
  • Loading branch information
Dushistov authored and maksimandrianov committed Mar 11, 2021
1 parent e8620e8 commit 9ab88d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion coding/files_container.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ FileReader FilesMappingContainer::GetReader(Tag const & tag) const
// FilesMappingContainer::Handle
/////////////////////////////////////////////////////////////////////////////

FilesMappingContainer::Handle::~Handle()
detail::MappedFile::Handle::~Handle()
{
Unmap();
}
Expand Down

0 comments on commit 9ab88d2

Please sign in to comment.