mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 19:23:23 +01:00
Spell out the template args for compilers having issues with the injected class
name. llvm-svn: 217780
This commit is contained in:
parent
0157ffa1ec
commit
4074d3de25
@ -165,7 +165,8 @@ template <> struct isPodLike<BitCodeAbbrevOp> { static const bool value=true; };
|
||||
class BitCodeAbbrev : public RefCountedBase<BitCodeAbbrev> {
|
||||
SmallVector<BitCodeAbbrevOp, 32> OperandList;
|
||||
~BitCodeAbbrev() {}
|
||||
friend class RefCountedBase; // Only RefCountedBase is allowed to delete.
|
||||
// Only RefCountedBase is allowed to delete.
|
||||
friend class RefCountedBase<BitCodeAbbrev>;
|
||||
|
||||
public:
|
||||
unsigned getNumOperandInfos() const {
|
||||
|
Loading…
Reference in New Issue
Block a user