From a623289d94b9c51473e791727b08f1c3aa3bb671 Mon Sep 17 00:00:00 2001
From: Jakub Jirutka <jakub@jirutka.cz>
Date: Mon, 6 Mar 2017 22:58:35 +0100
Subject: [PATCH] include <sys/types.h> where uint is used

Compilation fails on gcc 6.3.0 and musl libc:

  g++ -pipe -std=c++11 -O3 -DNDEBUG -DRELEASE -c -Wall -pedantic -Wextra -Werror \
    -Wshadow -Wpointer-arith -Wcast-qual -Wdelete-non-virtual-dtor \
    -Wredundant-decls -fPIC \
    ... \
    alib2algo_experimental/src/graph/spanningtree/Kruskal.cpp \
    -o alib2algo_experimental/obj-release/graph/spanningtree/Kruskal.o
  In file included from alib2algo_experimental/src/graph/spanningtree/Kruskal.cpp:15:0:
  alib2algo_experimental/src/graph/spanningtree/../datastructs/Components.h:74:3: error: 'uint' does not name a type
     uint parent;
     ^~~~

This type is defined in sys/types.h when _GNU_SOURCE or _BSD_SOURCE is
defined (at least in musl libc). Please note that uint is not specified
in C++ standard and should not be used...
---
 alib2algo_experimental/src/graph/datastructs/BinomialHeap.h | 2 ++
 alib2algo_experimental/src/graph/datastructs/Components.h   | 2 ++
 2 files changed, 4 insertions(+)

diff --git a/alib2algo_experimental/src/graph/datastructs/BinomialHeap.h b/alib2algo_experimental/src/graph/datastructs/BinomialHeap.h
index e6a77ffa33..0185cdc10b 100644
--- a/alib2algo_experimental/src/graph/datastructs/BinomialHeap.h
+++ b/alib2algo_experimental/src/graph/datastructs/BinomialHeap.h
@@ -8,6 +8,8 @@
 #ifndef BINOMIAL_HEAP_INCLUDED
 #define BINOMIAL_HEAP_INCLUDED
 
+#include <sys/types.h>
+
 #include <stdexcept>
 
 /// binomial heap used as mergeable priority queue
diff --git a/alib2algo_experimental/src/graph/datastructs/Components.h b/alib2algo_experimental/src/graph/datastructs/Components.h
index d1e4cbc5ba..74737e278f 100644
--- a/alib2algo_experimental/src/graph/datastructs/Components.h
+++ b/alib2algo_experimental/src/graph/datastructs/Components.h
@@ -5,6 +5,8 @@
  *       Author: Jan Broz
  */
 
+#include <sys/types.h>
+
 #include <unordered_map>
 
 #include <graph/common/Node.h>
-- 
GitLab