replace stdint.h with cstdint

The former is deprecated by C++14. The standard says they are the same:

The header defines all types and macros the same as the C standard library
header<stdint.h>.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
This commit is contained in:
Rosen Penev
2020-03-12 17:08:53 -07:00
parent 2db8bcc353
commit a2f5a63bbc
85 changed files with 88 additions and 113 deletions
+1 -2
View File
@@ -24,8 +24,7 @@
#include <algorithm>
#include <cassert>
#include <stdint.h>
#include <cstdint>
namespace Alsa {
+1 -1
View File
@@ -22,7 +22,7 @@
#include "util/Compiler.h"
#include <stdint.h>
#include <cstdint>
static constexpr uint_least32_t
MakeAlsaVersion(uint_least32_t major, uint_least32_t minor,