Skip to content

Commit

Permalink
Fix includes
Browse files Browse the repository at this point in the history
  • Loading branch information
bruhmoent committed Nov 17, 2024
1 parent 22bd2ae commit 0ce785c
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 2 additions & 0 deletions src/gui/menu_color.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.

#include <sstream>

#include "gui/menu_color.hpp"
#include "menu_item.hpp"
#include "../util/log.hpp"
Expand Down
3 changes: 3 additions & 0 deletions src/video/color.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,12 @@
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.

#include "../math/util.hpp"
#include "video/color.hpp"

#include <assert.h>
#include <regex>
#include <sstream>

const Color Color::BLACK(0.0, 0.0, 0.0);
const Color Color::RED(1.0, 0.0, 0.0);
Expand Down
9 changes: 2 additions & 7 deletions src/video/color.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,10 @@
#ifndef HEADER_SUPERTUX_VIDEO_COLOR_HPP
#define HEADER_SUPERTUX_VIDEO_COLOR_HPP

#include "../math/util.hpp"

#include <string>
#include <sstream>
#include <vector>
#include <math.h>
#include <memory>
#include <string>
#include <optional>
#include <regex>
#include <vector>

#include <SDL_image.h>

Expand Down

0 comments on commit 0ce785c

Please sign in to comment.