From 75808f63642303a20fb8b5e5165e035fbc174a72 Mon Sep 17 00:00:00 2001 From: Magnus Jacobsson Date: Thu, 12 Aug 2021 11:23:06 +0200 Subject: [PATCH] gvc: add storage-class attribute declaration of gvLayoutDone in gvc.h This function was introduced in 6f46c2c224180dc238851d2fb88d1fb909548376 which was part of a branch which initially originated before the storage-class attributes for the other functions in this file were introduced. This was not noted when this branch was rebased before merge. Towards https://gitlab.com/graphviz/graphviz/-/issues/2058. --- lib/gvc/gvc.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/gvc/gvc.h b/lib/gvc/gvc.h index b8cec4553..2f975160a 100644 --- a/lib/gvc/gvc.h +++ b/lib/gvc/gvc.h @@ -68,7 +68,7 @@ GVC_API int gvLayout(GVC_t *gvc, graph_t *g, const char *engine); GVC_API int gvLayoutJobs(GVC_t *gvc, graph_t *g); /* Check if a layout has been done */ -extern bool gvLayoutDone(graph_t *g); +GVC_API bool gvLayoutDone(graph_t *g); /* Render layout into string attributes of the graph */ GVC_API void attach_attrs(graph_t *g); -- 2.40.0