fix missing includes (for clang, gcc was working fine)

This commit is contained in:
Andrea Blankenstijn 2021-07-29 15:31:39 +02:00
parent 657c7f852c
commit a83c4521e5
2 changed files with 3 additions and 0 deletions

View File

@ -1,6 +1,8 @@
#ifndef BWIDGETS_MATH_HPP
#define BWIDGETS_MATH_HPP
#include <cmath>
#include <SDL2/SDL_rect.h>
#include <basic_widgets/core/type/size.hpp>

View File

@ -1,5 +1,6 @@
#include <algorithm>
#include <cmath>
#include <vector>
#include <SDL2/SDL_render.h>