Add missing cstdint since gcc 13 is more picky.

pull/1156/head
Fredrik Öhrström 2024-01-24 12:33:10 +01:00
rodzic fe04152246
commit 03e03905ec
4 zmienionych plików z 4 dodań i 3 usunięć

Wyświetl plik

@ -23,7 +23,7 @@
#include<map>
#include<set>
#include<stdint.h>
#include<cstdint>
#include<time.h>
#include<functional>
#include<vector>

Wyświetl plik

@ -18,7 +18,7 @@
#ifndef TRANSLATEBITS_H
#define TRANSLATEBITS_H
#include<stdint.h>
#include<cstdint>
#include<string>
#include<vector>

Wyświetl plik

@ -20,6 +20,7 @@
#include<string>
#include<vector>
#include<cstdint>
// A named quantity has a preferred unit,
// ie Volume has m3 (cubic meters) Energy has kwh, Power has kw.

Wyświetl plik

@ -19,7 +19,7 @@
#define UTIL_H
#include<signal.h>
#include<stdint.h>
#include<cstdint>
#include<string>
#include<functional>
#include<map>