Skip to content

Commit

Permalink
Fixing const-correctness
Browse files Browse the repository at this point in the history
  • Loading branch information
hkaiser committed Jun 8, 2017
1 parent 4bd0287 commit f9d65c6
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions hpx/traits/serialization_access_data.hpp
Expand Up @@ -169,6 +169,11 @@ namespace hpx { namespace traits
decompressed_size);
}
};

template <typename Container>
struct serialization_access_data<Container const>
: serialization_access_data<Container>
{};
}}

#endif
Expand Down

0 comments on commit f9d65c6

Please sign in to comment.