aboutsummaryrefslogtreecommitdiff
path: root/src/id.cc
diff options
context:
space:
mode:
authorschnetter <schnetter@83718e91-0e4f-0410-abf4-91180603181f>2008-03-10 18:10:20 +0000
committerschnetter <schnetter@83718e91-0e4f-0410-abf4-91180603181f>2008-03-10 18:10:20 +0000
commitf86b918f68263eb829e9c4728599fbf176d5e9fd (patch)
tree9daf80b8cfd23b97fb08eaae7628eedf54ccdf65 /src/id.cc
parentdbba9f2527a9075ce4b9b76446e099e07ad48082 (diff)
Remove source ID again; please use the build ID instead.
git-svn-id: http://svn.cactuscode.org/arrangements/CactusUtils/Formaline/trunk@170 83718e91-0e4f-0410-abf4-91180603181f
Diffstat (limited to 'src/id.cc')
-rw-r--r--src/id.cc20
1 files changed, 0 insertions, 20 deletions
diff --git a/src/id.cc b/src/id.cc
index 96b3224..107df4b 100644
--- a/src/id.cc
+++ b/src/id.cc
@@ -45,9 +45,6 @@ namespace Formaline
// Configuration ID
extern "C" char const * const config_id;
- // Unique source tree ID
- extern "C" char const * const source_id;
-
// Unique build ID
extern "C" char const * const build_id;
@@ -62,15 +59,6 @@ namespace Formaline
- // Get the unique source id
- char const *
- get_source_id (cGH const * const cctkGH)
- {
- return source_id;
- }
-
-
-
// Get the unique build id
char const *
get_build_id (cGH const * const cctkGH)
@@ -208,13 +196,6 @@ namespace Formaline
}
extern "C" CCTK_POINTER_TO_CONST
- Formaline_UniqueSourceID (CCTK_POINTER_TO_CONST const cctkGH_)
- {
- cGH const * const cctkGH = static_cast<cGH const *> (cctkGH_);
- return static_cast<CCTK_POINTER_TO_CONST> (get_source_id (cctkGH));
- }
-
- extern "C" CCTK_POINTER_TO_CONST
Formaline_UniqueBuildID (CCTK_POINTER_TO_CONST const cctkGH_)
{
cGH const * const cctkGH = static_cast<cGH const *> (cctkGH_);
@@ -241,7 +222,6 @@ namespace Formaline
Formaline_PrintIDs ()
{
CCTK_VInfo (CCTK_THORNSTRING, "Configuration id: %s", get_config_id (0));
- CCTK_VInfo (CCTK_THORNSTRING, "Source id: %s", get_source_id (0));
CCTK_VInfo (CCTK_THORNSTRING, "Build id: %s", get_build_id (0));
CCTK_VInfo (CCTK_THORNSTRING, "Simulation id: %s", get_simulation_id (0));
CCTK_VInfo (CCTK_THORNSTRING, "Run id: %s", get_run_id (0));