Implement equivalence relation for opaque types.

This commit is contained in:
Matthias Vallentin 2012-12-05 18:52:52 -10:00
parent fa9aeeaaf1
commit 2494940d95
2 changed files with 6 additions and 3 deletions

View file

@ -505,7 +505,7 @@ public:
OpaqueType(const string& name);
virtual ~OpaqueType() { };
const string& Name() { return name; }
const string& Name() const { return name; }
void Describe(ODesc* d) const;