Removed spurious includes
This commit is contained in:
parent
02a8b56ce1
commit
84b7b78e3c
4 changed files with 2 additions and 4 deletions
|
|
@ -3,7 +3,6 @@
|
|||
#include <absl/flags/parse.h>
|
||||
#include <absl/types/span.h>
|
||||
#include <atomic>
|
||||
#include <bits/stdint-uintn.h>
|
||||
#include <cstddef>
|
||||
#include <ios>
|
||||
#include <iostream>
|
||||
|
|
|
|||
|
|
@ -1,5 +1,6 @@
|
|||
#pragma once
|
||||
#include "Globals.h"
|
||||
#include "Helpers.h"
|
||||
#include <absl/types/span.h>
|
||||
#include <cmath>
|
||||
|
||||
|
|
@ -11,7 +12,7 @@ public:
|
|||
template <class C>
|
||||
static Type normalizedGain(Type cutoff, C sampleRate)
|
||||
{
|
||||
return std::tan(cutoff / static_cast<Type>(sampleRate) * M_PIf32);
|
||||
return std::tan(cutoff / static_cast<Type>(sampleRate) * pi<float>);
|
||||
}
|
||||
|
||||
OnePoleFilter(Type gain)
|
||||
|
|
|
|||
|
|
@ -1,7 +1,6 @@
|
|||
#include "Region.h"
|
||||
#include "Helpers.h"
|
||||
#include "absl/strings/str_replace.h"
|
||||
#include <bits/stdint-uintn.h>
|
||||
#include <random>
|
||||
|
||||
bool sfz::Region::parseOpcode(const Opcode& opcode)
|
||||
|
|
|
|||
|
|
@ -5,7 +5,6 @@
|
|||
#include "Helpers.h"
|
||||
#include "Opcode.h"
|
||||
#include "StereoBuffer.h"
|
||||
#include <bits/stdint-uintn.h>
|
||||
#include <bitset>
|
||||
#include <optional>
|
||||
#include <random>
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue