diff options
author | Anton Korobeynikov <asl@math.spbu.ru> | 2007-12-16 00:42:19 +0000 |
---|---|---|
committer | Anton Korobeynikov <asl@math.spbu.ru> | 2007-12-16 00:42:19 +0000 |
commit | b5ec947b5eff3b9105dd279a77e0dc30cd341826 (patch) | |
tree | 9e82354e76e4b569f9a2e21db7f9f31c4cc24017 | |
parent | ffe9e63c4a11352fd6437588fad516efdb46aa40 (diff) |
Constify graph arguments
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@45066 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/llvm/Support/DOTGraphTraits.h | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/include/llvm/Support/DOTGraphTraits.h b/include/llvm/Support/DOTGraphTraits.h index ed59303742..f2a54512b2 100644 --- a/include/llvm/Support/DOTGraphTraits.h +++ b/include/llvm/Support/DOTGraphTraits.h @@ -31,13 +31,13 @@ struct DefaultDOTGraphTraits { /// top of the graph. /// template<typename GraphType> - static std::string getGraphName(GraphType Graph) { return ""; } + static std::string getGraphName(const GraphType& Graph) { return ""; } /// getGraphProperties - Return any custom properties that should be included /// in the top level graph structure for dot. /// template<typename GraphType> - static std::string getGraphProperties(GraphType Graph) { + static std::string getGraphProperties(const GraphType& Graph) { return ""; } @@ -51,21 +51,22 @@ struct DefaultDOTGraphTraits { /// getNodeLabel - Given a node and a pointer to the top level graph, return /// the label to print in the node. template<typename GraphType> - static std::string getNodeLabel(const void *Node, GraphType Graph) { + static std::string getNodeLabel(const void *Node, const GraphType& Graph) { return ""; } /// hasNodeAddressLabel - If this method returns true, the address of the node /// is added to the label of the node. template<typename GraphType> - static bool hasNodeAddressLabel(const void *Node, GraphType Graph) { + static bool hasNodeAddressLabel(const void *Node, const GraphType& Graph) { return false; } /// If you want to specify custom node attributes, this is the place to do so /// template<typename GraphType> - static std::string getNodeAttributes(const void *Node, GraphType Graph) { + static std::string getNodeAttributes(const void *Node, + const GraphType& Graph) { return ""; } @@ -106,7 +107,7 @@ struct DefaultDOTGraphTraits { /// it to add things to the output graph. /// template<typename GraphType, typename GraphWriter> - static void addCustomGraphFeatures(GraphType Graph, GraphWriter &GW) {} + static void addCustomGraphFeatures(const GraphType& Graph, GraphWriter &GW) {} }; |