Fix build.

This commit is contained in:
Robin Davies
2022-03-04 21:36:45 -05:00
parent e454905aa6
commit b763cbabfe
+6 -4
View File
@@ -32,6 +32,8 @@
#include <pwd.h> #include <pwd.h>
#include "JackServerSettings.hpp" #include "JackServerSettings.hpp"
#define SS(x) ( ((std::stringstream&)(std::stringstream() << x )).str())
using namespace std; using namespace std;
using namespace pipedal; using namespace pipedal;
@@ -196,7 +198,7 @@ static void RemoveLine(const std::string&path, const std::string lineToRemove)
ifstream f(path); ifstream f(path);
if (!f.is_open()) if (!f.is_open())
{ {
throw PiPedalException((std::stringstream() << "Can't open " << path).str()); throw PiPedalException(SS("Can't open " << path));
} }
while (true) while (true)
{ {
@@ -215,7 +217,7 @@ static void RemoveLine(const std::string&path, const std::string lineToRemove)
std::ofstream f(path); std::ofstream f(path);
if (!f.is_open()) if (!f.is_open())
{ {
throw PiPedalException("Can't write to file."); throw PiPedalException(SS("Can't write to " << path));
} }
for (auto&line: lines) for (auto&line: lines)
{ {
@@ -251,7 +253,7 @@ void InstallPamEnv()
ifstream f(path); ifstream f(path);
if (!f.is_open()) if (!f.is_open())
{ {
throw PiPedalException((std::stringstream() << "Can't open " << path).str()); throw PiPedalException(SS("Can't open " << path));
} }
while (true) while (true)
{ {
@@ -276,7 +278,7 @@ void InstallPamEnv()
std::ofstream f(path); std::ofstream f(path);
if (!f.is_open()) if (!f.is_open())
{ {
throw PiPedalException("Can't write to file."); throw PiPedalException(SS("Can't write to " << path));
} }
for (auto&line: lines) for (auto&line: lines)
{ {