clang-format step

This commit is contained in:
Paul Fd 2020-04-13 21:38:22 +02:00
parent 7c07df4f66
commit e274084d2f
4 changed files with 30 additions and 32 deletions

View file

@ -111,7 +111,6 @@ sfz::EQHolderPtr sfz::EQPool::getEQ(const EQDescription& description, unsigned n
if (!lock.owns_lock()) if (!lock.owns_lock())
return {}; return {};
auto eq = absl::c_find_if(eqs, [](const EQHolderPtr& holder) { auto eq = absl::c_find_if(eqs, [](const EQHolderPtr& holder) {
return holder.use_count() == 1; return holder.use_count() == 1;
}); });

View file

@ -532,8 +532,7 @@ TEST_CASE("[Files] Looped regions taken from files and possibly overriden")
TEST_CASE("[Files] Case sentitiveness") TEST_CASE("[Files] Case sentitiveness")
{ {
const fs::path sfzFilePath = fs::current_path() / const fs::path sfzFilePath = fs::current_path() / "tests/TestFiles/case_insensitive.sfz";
"tests/TestFiles/case_insensitive.sfz";
#if defined(_WIN32) #if defined(_WIN32)
const bool caseSensitiveFs = false; const bool caseSensitiveFs = false;