Disable a tuning library API which is unused and non-RT
This commit is contained in:
parent
d3a3dbd184
commit
d434132fd7
2 changed files with 4 additions and 0 deletions
2
src/external/tunings/include/Tunings.h
vendored
2
src/external/tunings/include/Tunings.h
vendored
|
|
@ -133,12 +133,14 @@ namespace Tunings
|
||||||
*/
|
*/
|
||||||
Scale evenTemperament12NoteScale();
|
Scale evenTemperament12NoteScale();
|
||||||
|
|
||||||
|
#if 0 // Note(jpc): not rewritten RT-safe, not used, disabled
|
||||||
/**
|
/**
|
||||||
* evenDivisionOfSpanByM provides a scale referd to as "ED2-17" or
|
* evenDivisionOfSpanByM provides a scale referd to as "ED2-17" or
|
||||||
* "ED3-24" by dividing the Span into M points. eventDivisionOfSpanByM(2,12)
|
* "ED3-24" by dividing the Span into M points. eventDivisionOfSpanByM(2,12)
|
||||||
* should be the evenTemperament12NoteScale
|
* should be the evenTemperament12NoteScale
|
||||||
*/
|
*/
|
||||||
Scale evenDivisionOfSpanByM( int Span, int M );
|
Scale evenDivisionOfSpanByM( int Span, int M );
|
||||||
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* readKBMStream returns a KeyboardMapping from a KBM input stream
|
* readKBMStream returns a KeyboardMapping from a KBM input stream
|
||||||
|
|
|
||||||
2
src/external/tunings/src/Tunings.cpp
vendored
2
src/external/tunings/src/Tunings.cpp
vendored
|
|
@ -159,6 +159,7 @@ namespace Tunings
|
||||||
return res;
|
return res;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#if 0
|
||||||
Scale evenDivisionOfSpanByM( int Span, int M )
|
Scale evenDivisionOfSpanByM( int Span, int M )
|
||||||
{
|
{
|
||||||
if( Span <= 0 )
|
if( Span <= 0 )
|
||||||
|
|
@ -182,6 +183,7 @@ namespace Tunings
|
||||||
|
|
||||||
return parseSCLData( oss.str() );
|
return parseSCLData( oss.str() );
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
KeyboardMapping readKBMStream(std::istream &inf)
|
KeyboardMapping readKBMStream(std::istream &inf)
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue