diff options
| author | Carl Hetherington <cth@carlh.net> | 2026-02-04 00:55:23 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2026-02-16 01:20:51 +0100 |
| commit | 5a2d4da4e67ca2ee6f7ea5bac3b6913457c75df9 (patch) | |
| tree | 9cb587e87f3f3467c300ab065c290db9d29dae72 | |
| parent | 301c7dc76c7916c2cc79189bc6179ffb462eb459 (diff) | |
Fix Windows build.
| -rw-r--r-- | src/wx/player_frame.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/wx/player_frame.cc b/src/wx/player_frame.cc index 565e50ad7..a977165a8 100644 --- a/src/wx/player_frame.cc +++ b/src/wx/player_frame.cc @@ -63,6 +63,7 @@ LIBDCP_DISABLE_WARNINGS #include <wx/progdlg.h> #include <wx/stdpaths.h> LIBDCP_ENABLE_WARNINGS +#include <iostream> #define MAX_CPLS 32 @@ -175,7 +176,7 @@ PlayerFrame::PlayerFrame() #if defined(DCPOMATIC_WINDOWS) maybe_open_console(); - cout << variant::dcpomatic_player() << " is starting." << "\n"; + std::cout << variant::dcpomatic_player() << " is starting." << "\n"; #endif auto bar = new wxMenuBar; |
