1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
Author: Andreas Tille <tille@debian.org>
Last-Update: 2025-11-04
Description: Add missing includes to build with gcc-15
--- a/src/DiaGram.hpp
+++ b/src/DiaGram.hpp
@@ -22,6 +22,7 @@ along with this program. If not, see <h
#include "config.h"
+#include <cstdint>
#include <string>
#include <list>
--- a/src/umlClassNode.hpp
+++ b/src/umlClassNode.hpp
@@ -24,6 +24,7 @@ along with this program. If not, see <h
#include "decls.hpp"
#include "umlClass.hpp"
#include "umlAssoc.hpp"
+#include <cstdint>
class umlClassNode : public umlClass {
private :
|