[llvm-branch-commits] [llvm-branch] r142610 - in /llvm/branches/release_30: ./ include/llvm/ADT/SCCIterator.h

Bill Wendling isanbard at gmail.com
Thu Oct 20 13:28:30 PDT 2011


Author: void
Date: Thu Oct 20 15:28:30 2011
New Revision: 142610

URL: http://llvm.org/viewvc/llvm-project?rev=142610&view=rev
Log:
Merging r142573:
------------------------------------------------------------------------
r142573 | baldrick | 2011-10-20 01:56:41 -0700 (Thu, 20 Oct 2011) | 2 lines

Avoid warnings about the parameter G being unused.

------------------------------------------------------------------------

Modified:
    llvm/branches/release_30/   (props changed)
    llvm/branches/release_30/include/llvm/ADT/SCCIterator.h

Propchange: llvm/branches/release_30/
------------------------------------------------------------------------------
--- svn:mergeinfo (original)
+++ svn:mergeinfo Thu Oct 20 15:28:30 2011
@@ -1,3 +1,3 @@
 /llvm/branches/Apple/Pertwee:110850,110961
 /llvm/branches/type-system-rewrite:133420-134817
-/llvm/trunk:142039,142055,142058,142112,142123,142125,142165,142168,142243,142350,142482,142486,142489,142491-142493,142537,142550,142559
+/llvm/trunk:142039,142055,142058,142112,142123,142125,142165,142168,142243,142350,142482,142486,142489,142491-142493,142537,142550,142559,142573

Modified: llvm/branches/release_30/include/llvm/ADT/SCCIterator.h
URL: http://llvm.org/viewvc/llvm-project/llvm/branches/release_30/include/llvm/ADT/SCCIterator.h?rev=142610&r1=142609&r2=142610&view=diff
==============================================================================
--- llvm/branches/release_30/include/llvm/ADT/SCCIterator.h (original)
+++ llvm/branches/release_30/include/llvm/ADT/SCCIterator.h Thu Oct 20 15:28:30 2011
@@ -139,7 +139,7 @@
 
   // 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 {





More information about the llvm-branch-commits mailing list