Remove deprecated APIs

This commit is contained in:
Victor Zverovich
2022-05-22 07:10:09 -07:00
parent edeb3d8091
commit ce246aaf74
7 changed files with 16 additions and 66 deletions
+1 -1
View File
@@ -347,7 +347,7 @@ TEST(output_redirect_test, flush_error_in_ctor) {
TEST(output_redirect_test, dup_error_in_ctor) {
buffered_file f = open_buffered_file();
int fd = (f.fileno)();
int fd = (f.descriptor)();
file copy = file::dup(fd);
FMT_POSIX(close(fd));
std::unique_ptr<output_redirect> redir{nullptr};