Skip to content

Commit

Permalink
Unbreak build on Fedora 32 (gcc 10.0.1)
Browse files Browse the repository at this point in the history
It requires cstdint in a few more headers.
  • Loading branch information
0xxon committed May 8, 2020
1 parent 9babb7d commit 695457f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/Anon.h
Expand Up @@ -12,6 +12,7 @@

#include <vector>
#include <map>
#include <cstdint>

// TODO: Anon.h may not be the right place to put these functions ...

Expand Down
1 change: 1 addition & 0 deletions src/Notifier.h
Expand Up @@ -8,6 +8,7 @@
#pragma once

#include <unordered_map>
#include <cstdint>

namespace notifier {

Expand Down
1 change: 1 addition & 0 deletions src/Reassem.h
Expand Up @@ -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.
Expand Down

0 comments on commit 695457f

Please sign in to comment.