Skip to content

Commit

Permalink
Add missing std includes
Browse files Browse the repository at this point in the history
  • Loading branch information
tobiashienzsch committed May 20, 2024
1 parent d7b685e commit 051ea4d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/ra/acoustics/room.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

#include <ra/math/vec3.hpp>

#include <algorithm>
#include <cmath>
#include <span>
#include <vector>
Expand Down
2 changes: 2 additions & 0 deletions src/ra/acoustics/stochastic_raytracing.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
#include "stochastic_raytracing.hpp"

#include <array>

namespace ra {

StochasticRaytracing::StochasticRaytracing(Room const& room) noexcept : _room{room} {}
Expand Down

0 comments on commit 051ea4d

Please sign in to comment.