File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ class FileHandler
29
29
#if defined(_WIN32)
30
30
using Handle = void *;
31
31
#else
32
- using Handle = std ::FILE*;
32
+ using Handle = ::FILE*;
33
33
#endif
34
34
FileHandler (std::recursive_mutex& mutex, const std::string& file, const std::string& mode) noexcept ;
35
35
FileHandler (const FileHandler&) = delete ;
@@ -39,7 +39,7 @@ class FileHandler
39
39
virtual ~FileHandler () noexcept ;
40
40
Handle handle () const noexcept ;
41
41
bool null () const noexcept ;
42
- std ::FILE* file () const noexcept ;
42
+ ::FILE* file () const noexcept ;
43
43
std::int32_t fd () const noexcept ;
44
44
void lockIO ();
45
45
void unlockIO ();
@@ -50,7 +50,7 @@ class FileHandler
50
50
std::recursive_mutex& m_mutex; // NOLINT(cppcoreguidelines-avoid-const-or-ref-data-members)
51
51
bool m_null{false };
52
52
Handle m_handle{nullptr };
53
- std ::FILE* m_file{nullptr };
53
+ ::FILE* m_file{nullptr };
54
54
std::int32_t m_fd{-1 };
55
55
};
56
56
You can’t perform that action at this time.
0 commit comments