Skip to content

Commit

Permalink
Fix clang compiler error.
Browse files Browse the repository at this point in the history
Newer(?) versions of clang complain about importing a member type
without using typename.
  • Loading branch information
kfindeisen committed Jun 7, 2019
1 parent 30d6bf5 commit 4541b6e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/lsst/afw/typehandling/_GenericMap.cc
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ namespace {
template <typename K>
class Publicist : public MutableGenericMap<K> {
public:
using GenericMap<K>::ConstValueReference;
using typename GenericMap<K>::ConstValueReference;
using GenericMap<K>::unsafeLookup;
using MutableGenericMap<K>::unsafeErase;
};
Expand Down

0 comments on commit 4541b6e

Please sign in to comment.