From: Frederic Suter Date: Tue, 12 Jan 2016 10:29:48 +0000 (+0100) Subject: the comment said this function is private, make it private X-Git-Tag: v3_13~1252 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/640c2105b668b0fd6089e3d2e7b1a3031fc3ec2c the comment said this function is private, make it private --- 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);