Changed the configuration namespaces
This commit is contained in:
parent
b2635aa2c2
commit
e85442a0f3
2 changed files with 3 additions and 2 deletions
|
|
@ -20,9 +20,10 @@ namespace config
|
|||
|
||||
} // namespace sfz
|
||||
|
||||
enum class VectorOperations { standard, sse, neon };
|
||||
namespace config
|
||||
{
|
||||
inline constexpr unsigned int defaultAlignment { 16 };
|
||||
enum class VectorOperations { standard, sse, neon };
|
||||
|
||||
inline constexpr VectorOperations vectorOperation { VectorOperations::standard };
|
||||
} // namespace config
|
||||
|
|
@ -103,7 +103,7 @@ struct Region
|
|||
EGDescription pitchEG;
|
||||
EGDescription filterEG;
|
||||
|
||||
double sampleRate { Config::defaultSampleRate };
|
||||
double sampleRate { config::defaultSampleRate };
|
||||
int numChannels { 1 };
|
||||
};
|
||||
} // namespace sfz
|
||||
Loading…
Add table
Reference in a new issue