mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-14 00:14:18 +00:00
More 'nullptr' updates and minor clean-ups.
This commit is contained in:
parent
46c3a6bbe5
commit
b047d9be53
113 changed files with 560 additions and 663 deletions
|
|
@ -35,7 +35,7 @@ static void* juce_libjack_handle = nullptr;
|
|||
void* juce_load_jack_function (const char* const name)
|
||||
{
|
||||
if (juce_libjack_handle == 0)
|
||||
return 0;
|
||||
return nullptr;
|
||||
|
||||
return dlsym (juce_libjack_handle, name);
|
||||
}
|
||||
|
|
@ -580,7 +580,7 @@ public:
|
|||
inputIds [inputIndex],
|
||||
outputIds [outputIndex]);
|
||||
|
||||
return 0;
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
//==============================================================================
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue