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:
@@ -28,12 +28,11 @@
|
||||
#include "system/PeriodClock.hxx"
|
||||
#include "util/Compiler.h"
|
||||
|
||||
#include <cstdint>
|
||||
#include <exception>
|
||||
#include <map>
|
||||
#include <memory>
|
||||
#include <string>
|
||||
#include <map>
|
||||
|
||||
#include <stdint.h>
|
||||
|
||||
enum class ReplayGainMode : uint8_t;
|
||||
struct FilteredAudioOutput;
|
||||
|
||||
@@ -29,11 +29,10 @@
|
||||
#include "util/ConstBuffer.hxx"
|
||||
|
||||
#include <cassert>
|
||||
#include <cstdint>
|
||||
#include <memory>
|
||||
#include <utility>
|
||||
|
||||
#include <stdint.h>
|
||||
|
||||
struct MusicChunk;
|
||||
struct Tag;
|
||||
class Filter;
|
||||
|
||||
@@ -23,8 +23,8 @@
|
||||
#include "util/AllocatedArray.hxx"
|
||||
|
||||
#include <cstddef>
|
||||
#include <cstdint>
|
||||
#include <memory>
|
||||
#include <stdint.h>
|
||||
|
||||
/**
|
||||
* A dynamically allocated buffer. It is used to pass
|
||||
|
||||
Reference in New Issue
Block a user