Fix missing uint32_t type declaration in rule.h

... by including cstdint.

Credits go to the new gcc in Tumbleweed for proposing this patch.
This commit is contained in:
Christian Boltz 2023-05-29 21:24:31 +02:00
parent d700f87d3e
commit c5c0ecb508
Failed to generate hash of commit

View file

@ -18,6 +18,7 @@
#ifndef __AA_RULE_H
#define __AA_RULE_H
#include <cstdint>
#include <list>
#include <ostream>