X-Git-Url: https://git.sesse.net/?p=cubemap;a=blobdiff_plain;f=util.cpp;h=a85de446a87f9451610f90c401f716e2fab86e5e;hp=8f42a9882aa099c85825c3dde7efdbca51f6d36a;hb=b757a4a2ce9d24835b52a185134835762af2f50c;hpb=a62559752c638a722ec42c707d8d36fa6ff71035 diff --git a/util.cpp b/util.cpp index 8f42a98..a85de44 100644 --- a/util.cpp +++ b/util.cpp @@ -16,7 +16,7 @@ using namespace std; -int make_tempfile(const std::string &contents) +int make_tempfile(const string &contents) { int fd = open("/tmp", O_RDWR | O_TMPFILE, 0600); if (fd == -1) { @@ -52,14 +52,14 @@ int make_tempfile(const std::string &contents) return fd; } -bool read_tempfile_and_close(int fd, std::string *contents) +bool read_tempfile_and_close(int fd, string *contents) { bool ok = read_tempfile(fd, contents); safe_close(fd); // Implicitly deletes the file. return ok; } -bool read_tempfile(int fd, std::string *contents) +bool read_tempfile(int fd, string *contents) { ssize_t ret, has_read;