lte: fix build by updating ofstream mode constants

This commit is contained in:
Tom Henderson
2019-05-11 12:15:24 -07:00
parent 21d35ffe01
commit 1c7d4f6d0e

View File

@@ -231,12 +231,12 @@ Throughput(bool firstWrite, Time binSize, std::string fileName)
if (firstWrite == true)
{
output.open (fileName.c_str (), std::_S_out);
output.open (fileName.c_str (), std::ofstream::out);
firstWrite = false;
}
else
{
output.open (fileName.c_str (), std::_S_app);
output.open (fileName.c_str (), std::ofstream::app);
}
//Instantaneous throughput every 200 ms