[llvm-commits] [llvm] r74113 - /llvm/trunk/include/llvm/ADT/Trie.h

Owen Anderson resistor at mac.com
Wed Jun 24 13:41:32 PDT 2009


Author: resistor
Date: Wed Jun 24 15:41:17 2009
New Revision: 74113

URL: http://llvm.org/viewvc/llvm-project?rev=74113&view=rev
Log:
Update for DOTGraphTraits changes.

Modified:
    llvm/trunk/include/llvm/ADT/Trie.h

Modified: llvm/trunk/include/llvm/ADT/Trie.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/ADT/Trie.h?rev=74113&r1=74112&r2=74113&view=diff

==============================================================================
--- llvm/trunk/include/llvm/ADT/Trie.h (original)
+++ llvm/trunk/include/llvm/ADT/Trie.h Wed Jun 24 15:41:17 2009
@@ -308,7 +308,8 @@
     return "Trie";
   }
 
-  static std::string getNodeLabel(NodeType* Node, const Trie<Payload>& T) {
+  static std::string getNodeLabel(NodeType* Node, const Trie<Payload>& T,
+                                  bool ShortNames) {
     if (T.getRoot() == Node)
       return "<Root>";
     else





More information about the llvm-commits mailing list