Skip to content

Commit

Permalink
Tntnet30: add missing include <fstream> and <sstream>
Browse files Browse the repository at this point in the history
  • Loading branch information
kfb77 committed Feb 16, 2021
1 parent 133a855 commit 771bc5c
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
4 changes: 4 additions & 0 deletions ffmpeg.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@
#include <exception>
#include <unistd.h>
#include <sys/wait.h>
#if TNTVERSION >= 30000
#include <sstream>
#include <fstream>
#endif

#include <vdr/tools.h>
#include <tnt/tntnet.h>
Expand Down
4 changes: 4 additions & 0 deletions tntconfig.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
#ifndef VDR_LIVE_TNTCONFIG_H
#define VDR_LIVE_TNTCONFIG_H

#if TNTVERSION >= 30000
#include <fstream>
#endif

#include "tntfeatures.h"

#include <tnt/tntnet.h>
Expand Down

0 comments on commit 771bc5c

Please sign in to comment.