Skip to content

Commit

Permalink
fixed #includes
Browse files Browse the repository at this point in the history
  • Loading branch information
mgerhold committed Apr 13, 2023
1 parent 33b1d26 commit 3891faf
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/random.hpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#pragma once

#include "utils.hpp"
#include "utils/utils.hpp"
#include <random>

struct Random {
Expand Down
2 changes: 1 addition & 1 deletion src/tetrion.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
#include "tetromino.hpp"
#include "text.hpp"
#include "types.hpp"
#include "utils.hpp"
#include "utils/utils.hpp"
#include <array>
#include <cmath>
#include <tl/optional.hpp>
Expand Down
3 changes: 1 addition & 2 deletions src/utils/utils.hpp
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
#pragma once

#include "types.hpp"
#include "utils.hpp"
#include "../types.hpp"
#include <algorithm>
#include <array>
#include <bit>
Expand Down

0 comments on commit 3891faf

Please sign in to comment.