Unbreak build on Fedora 32 (gcc 10.0.1)

It requires cstdint in a few more headers.
This commit is contained in:
Johanna Amann 2020-05-07 22:17:25 -07:00
parent 9babb7d39f
commit 695457fe44
3 changed files with 3 additions and 0 deletions

View file

@ -12,6 +12,7 @@
#include <vector>
#include <map>
#include <cstdint>
// TODO: Anon.h may not be the right place to put these functions ...

View file

@ -8,6 +8,7 @@
#pragma once
#include <unordered_map>
#include <cstdint>
namespace notifier {

View file

@ -9,6 +9,7 @@
#include <assert.h>
#include <string.h>
#include <sys/types.h> // for u_char
#include <cstdint>
// Whenever subclassing the Reassembler class
// you should add to this for known subclasses.