]> granicus.if.org Git - graphviz/commitdiff
make getLeftNeighbours static
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Sun, 18 Apr 2021 19:54:50 +0000 (12:54 -0700)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Sat, 24 Apr 2021 21:15:10 +0000 (14:15 -0700)
This is not used outside of its containing file.

lib/vpsc/generate-constraints.cpp

index 3502f55cb84346b7e246312570b82cd9bd66ae58..c2f618ecbfcc85f48141f048c9b3addb059ca9fb 100644 (file)
@@ -86,7 +86,7 @@ bool CmpNodePos::operator() (const Node* u, const Node* v) const {
        return u < v;
 }
 
-NodeSet* getLeftNeighbours(NodeSet &scanline,Node *v) {
+static NodeSet* getLeftNeighbours(NodeSet &scanline,Node *v) {
        NodeSet *leftv = new NodeSet;
        NodeSet::iterator i=scanline.find(v);
        while(i!=scanline.begin()) {