mirror of
https://git.freebsd.org/ports.git
synced 2025-05-25 07:26:29 -04:00
src/ButtonBox.hpp needs include sys/types.h for uint. PR: 240663 Approved by: yuri (maintainer), linimon (mentor) Differential Revision: https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=240663
10 lines
233 B
C++
10 lines
233 B
C++
--- src/ButtonBox.hpp.orig 2019-09-18 08:50:30 UTC
|
|
+++ src/ButtonBox.hpp
|
|
@@ -1,6 +1,7 @@
|
|
#ifndef BUTTONBOX_HPP_
|
|
#define BUTTONBOX_HPP_
|
|
|
|
+#include <sys/types.h>
|
|
#include <vector>
|
|
#include <cmath>
|
|
#include "BWidgets/BColors.hpp"
|