From 640c2105b668b0fd6089e3d2e7b1a3031fc3ec2c Mon Sep 17 00:00:00 2001 From: Frederic Suter Date: Tue, 12 Jan 2016 11:29:48 +0100 Subject: [PATCH 1/1] the comment said this function is private, make it private --- src/simdag/simdag_private.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/simdag/simdag_private.h b/src/simdag/simdag_private.h index 193e278536..8b62ba25fd 100644 --- a/src/simdag/simdag_private.h +++ b/src/simdag/simdag_private.h @@ -110,7 +110,9 @@ typedef struct SD_dependency { } s_SD_dependency_t, *SD_dependency_t; /* SimDag private functions */ -XBT_PUBLIC(xbt_swag_t) SD_simulate_swag(double how_long); /* could be public, but you need to see the internals of the SD_task_t to use it */ + +/* could be public, but you need to see the SD_task_t internals to use it */ +XBT_PRIVATE xbt_swag_t SD_simulate_swag(double how_long); XBT_PRIVATE SD_workstation_t __SD_workstation_create(const char* name); -- 2.20.1