Skip to content

Commit

Permalink
tidy: Replace deprecated C headers with the corresponding C++ header.
Browse files Browse the repository at this point in the history
This code was pointed out by clang-tidy's "deprecated headers" check.
Changes made by clang-tidy.

https://clang.llvm.org/extra/clang-tidy/checks/modernize-deprecated-headers.html
  • Loading branch information
linuxdude42 committed Mar 26, 2019
1 parent 51c5ffc commit d57089c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mythtv/libs/libmythtv/tv_play.cpp
Expand Up @@ -2,13 +2,13 @@
#include "tv_play.h"

#include <algorithm>
#include <cassert>
#include <chrono> // for milliseconds
#include <cmath>
#include <cstdarg>
#include <cstdint>
#include <cstdlib>
#include <thread> // for sleep_for
#include <assert.h>

using namespace std;

Expand Down

0 comments on commit d57089c

Please sign in to comment.