aboutsummaryrefslogtreecommitdiff
path: root/src/announce.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/announce.cc')
-rw-r--r--src/announce.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/announce.cc b/src/announce.cc
index 0c1b1ed..b566b04 100644
--- a/src/announce.cc
+++ b/src/announce.cc
@@ -108,7 +108,7 @@ namespace Formaline
string const filenamestring = filenamebuf.str();
ofstream fil;
fil.open (filenamestring.c_str(), ios::trunc);
- fil << get_config_id (cctkGH) << endl;
+ fil << get_config_id (cctkGH) << "\n";
fil.close ();
}
{
@@ -117,7 +117,7 @@ namespace Formaline
string const filenamestring = filenamebuf.str();
ofstream fil;
fil.open (filenamestring.c_str(), ios::trunc);
- fil << get_build_id (cctkGH) << endl;
+ fil << get_build_id (cctkGH) << "\n";
fil.close ();
}
{
@@ -126,7 +126,7 @@ namespace Formaline
string const filenamestring = filenamebuf.str();
ofstream fil;
fil.open (filenamestring.c_str(), ios::trunc);
- fil << get_simulation_id (cctkGH) << endl;
+ fil << get_simulation_id (cctkGH) << "\n";
fil.close ();
}
{
@@ -135,7 +135,7 @@ namespace Formaline
string const filenamestring = filenamebuf.str();
ofstream fil;
fil.open (filenamestring.c_str(), ios::trunc);
- fil << get_run_id (cctkGH) << endl;
+ fil << get_run_id (cctkGH) << "\n";
fil.close ();
}
}