Skip to content

Commit

Permalink
fix warning
Browse files Browse the repository at this point in the history
  • Loading branch information
flagarde committed Jan 26, 2025
1 parent 91304e1 commit a01078a
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions cpp-terminal/iostream_initializer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,16 @@
#include "cpp-terminal/tty.hpp"

#include <cstddef>

#ifdef _WIN32
#pragma warning( push )
#pragma warning( disable : 4710)
#endif
#include <iostream>
#ifdef _WIN32
#pragma warning( pop )
#endif

std::size_t Term::IOStreamInitializer::m_counter{0};

#ifdef _WIN32
Expand Down

0 comments on commit a01078a

Please sign in to comment.