mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-02-24 06:27:56 +00:00
add missing *
llvm-svn: 68350
This commit is contained in:
parent
7ec088a3de
commit
67af801e8b
@ -141,7 +141,7 @@ public:
|
||||
/// operations. This means that RAUW's need to explicitly update the
|
||||
/// AssertingVH's as it moves. This is required because in non-assert mode this
|
||||
/// class turns into a trivial wrapper around a pointer.
|
||||
template <typename ValueTy = Value>
|
||||
template <typename ValueTy>
|
||||
class AssertingVH
|
||||
#ifndef NDEBUG
|
||||
: public ValueHandleBase
|
||||
@ -185,7 +185,7 @@ public:
|
||||
}
|
||||
|
||||
ValueTy *operator->() const { return getValPtr(); }
|
||||
ValueTy &operator*() const { return getValPtr(); }
|
||||
ValueTy &operator*() const { return *getValPtr(); }
|
||||
|
||||
// Duplicate these from the base class so that they work when assertions are
|
||||
// off.
|
||||
|
Loading…
x
Reference in New Issue
Block a user