1
0
mirror of https://git.suyu.dev/suyu/suyu synced 2025-12-15 15:55:15 -06:00

Fixes and corrections on formatting.

This commit is contained in:
Fernando Sahmkow
2019-03-19 22:20:15 -04:00
committed by FernandoS27
parent f35e09fe0d
commit db42bcb306
5 changed files with 30 additions and 41 deletions

View File

@@ -11,7 +11,7 @@ namespace Common {
TEST_CASE("MultiLevelQueue", "[common]") {
std::array<f32, 8> values = {0.0, 5.0, 1.0, 9.0, 8.0, 2.0, 6.0, 7.0};
Common::MultiLevelQueue<f32,64> mlq;
Common::MultiLevelQueue<f32, 64> mlq;
REQUIRE(mlq.empty());
mlq.add(values[2], 2);
mlq.add(values[7], 7);