mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 19:23:23 +01:00
Avoid warnings about the parameter G being unused.
llvm-svn: 142573
This commit is contained in:
parent
e8f8cf1f33
commit
4afb312617
@ -139,7 +139,7 @@ public:
|
||||
|
||||
// Provide static "constructors"...
|
||||
static inline _Self begin(const GraphT &G){return _Self(GT::getEntryNode(G));}
|
||||
static inline _Self end (const GraphT &G) { return _Self(); }
|
||||
static inline _Self end (const GraphT &) { return _Self(); }
|
||||
|
||||
// Direct loop termination test: I.isAtEnd() is more efficient than I == end()
|
||||
inline bool isAtEnd() const {
|
||||
|
Loading…
Reference in New Issue
Block a user