aboutsummaryrefslogtreecommitdiff
path: root/src/posix_extras.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/posix_extras.cc')
-rw-r--r--src/posix_extras.cc7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/posix_extras.cc b/src/posix_extras.cc
index 6013b9b..2aeda7b 100644
--- a/src/posix_extras.cc
+++ b/src/posix_extras.cc
@@ -51,13 +51,6 @@ std::string IoError::Message(const int number) noexcept {
return "(could not generate error message)";
}
-File::File(const char* const path, const int flags) : path_(path) {
- if ((fd_ = open(path, flags)) == -1) {
- throw IoError();
- }
- VLOG(1) << "opening file descriptor " << fd_;
-}
-
File::File(const char* const path, const int flags, const mode_t mode)
: path_(path) {
if ((fd_ = open(path, flags, mode)) == -1) {