From 1bcb9228eb1a61fd1ef1c853854ed3c29345a1a0 Mon Sep 17 00:00:00 2001 From: Matthew Fernandez Date: Sun, 23 Aug 2020 12:11:40 -0700 Subject: [PATCH] remove the need to have lib/circogen in include paths --- lib/circogen/block.h | 2 +- lib/circogen/blockpath.h | 2 +- lib/circogen/blocktree.h | 2 +- lib/circogen/circpos.h | 2 +- lib/circogen/circular.h | 4 ++-- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/lib/circogen/block.h b/lib/circogen/block.h index 49d03ab48..13237688a 100644 --- a/lib/circogen/block.h +++ b/lib/circogen/block.h @@ -18,7 +18,7 @@ extern "C" { #ifndef BLOCK_H #define BLOCK_H -#include +#include typedef struct block block_t; diff --git a/lib/circogen/blockpath.h b/lib/circogen/blockpath.h index 7ab227027..1a422d84f 100644 --- a/lib/circogen/blockpath.h +++ b/lib/circogen/blockpath.h @@ -18,7 +18,7 @@ extern "C" { #ifndef BLOCKPATH_H #define BLOCKPATH_H -#include +#include extern nodelist_t *layout_block(Agraph_t * g, block_t * sn, double); extern int cmpNodeDegree(Dt_t *, Agnode_t **, Agnode_t **, Dtdisc_t *); diff --git a/lib/circogen/blocktree.h b/lib/circogen/blocktree.h index 454eb1213..6308d67ef 100644 --- a/lib/circogen/blocktree.h +++ b/lib/circogen/blocktree.h @@ -19,7 +19,7 @@ extern "C" { #define BLOCKTREE_H #include -#include +#include extern block_t *createBlocktree(Agraph_t * g, circ_state * state); extern void freeBlocktree(block_t *); diff --git a/lib/circogen/circpos.h b/lib/circogen/circpos.h index 558c97af4..6a337956c 100644 --- a/lib/circogen/circpos.h +++ b/lib/circogen/circpos.h @@ -19,7 +19,7 @@ extern "C" { #define CIRCPOS_H #include -#include +#include extern void circPos(Agraph_t * g, block_t * sn, circ_state *); diff --git a/lib/circogen/circular.h b/lib/circogen/circular.h index f5c02423c..042c609c9 100644 --- a/lib/circogen/circular.h +++ b/lib/circogen/circular.h @@ -15,7 +15,7 @@ #define CIRCULAR_H #include "render.h" -#include "block.h" +#include typedef struct { blocklist_t bl; @@ -124,7 +124,7 @@ typedef struct { #define DEGREE(n) (ND_order(n)) -#include +#include #ifdef __cplusplus extern "C" { -- 2.50.1