Skip to content

Commit

Permalink
Fix gcc build
Browse files Browse the repository at this point in the history
  • Loading branch information
tobiashienzsch committed May 21, 2024
1 parent e969096 commit ddc0795
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/ra/acoustics/reflection/first_reflection.test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
TEST_CASE("RaumAkustik: firstReflections", "")
{
static constexpr auto Room = ra::RoomLayout{
.dimensions = ra::RoomDimensions{600, 365, 312},
{glm::dvec3{121, 160, 125}, glm::dvec3{121 + 123, 160, 125}},
glm::dvec3{121 + 123 / 2.0, 160 + 123, 120},
.dimensions = ra::RoomDimensions{600, 365, 312},
.speakers = {glm::dvec3{121, 160, 125}, glm::dvec3{121 + 123, 160, 125}},
.listenPosition = glm::dvec3{121 + 123 / 2.0, 160 + 123, 120},
};

auto reflections = std::array<ra::FirstReflection, 2>{};
Expand Down

0 comments on commit ddc0795

Please sign in to comment.