]> granicus.if.org Git - graphviz/commitdiff
common: mark 'arrow_length' static
authorMagnus Jacobsson <Magnus.Jacobsson@berotec.se>
Sun, 22 May 2022 15:33:22 +0000 (17:33 +0200)
committerMagnus Jacobsson <Magnus.Jacobsson@berotec.se>
Wed, 25 May 2022 11:38:14 +0000 (13:38 +0200)
This function is no longer used outside of its containing file.

lib/common/arrows.c
lib/common/render.h

index 402f38e98f49bf1b00365798cc492818cd7c3671..a9394882ca7a7ce45d9bf31b67aad7079cead7ad 100644 (file)
@@ -236,7 +236,7 @@ void arrow_flags(Agedge_t * e, int *sflag, int *eflag)
     }
 }
 
-double arrow_length(edge_t * e, int flag)
+static double arrow_length(edge_t * e, int flag)
 {
     double lenfact = 0.0;
     int f, i;
index 9bdda0bc9fefa3b97e0e291c421c2597b611497d..fa6ddde426c7ef98ee5765291273cb85b35959ce 100644 (file)
@@ -62,7 +62,6 @@ extern "C" {
     RENDER_API boxf arrow_bb(pointf p, pointf u, double arrowsize);
     RENDER_API void arrow_gen(GVJ_t * job, emit_state_t emit_state, pointf p, pointf u,
                          double arrowsize, double penwidth, int flag);
-    RENDER_API double arrow_length(edge_t * e, int flag);
     RENDER_API int arrowEndClip(edge_t*, pointf*, int, int , bezier*, int eflag);
     RENDER_API int arrowStartClip(edge_t*, pointf* ps, int, int, bezier*, int sflag);
     RENDER_API void arrowOrthoClip(edge_t*, pointf* ps, int, int, bezier*, int sflag, int eflag);