clang-tidy: Use nullptr instead of 0

run-clang-tidy -header-filter='.*' -checks='-*,modernize-use-nullptr' -fix
This commit is contained in:
Urs Fleisch
2023-07-15 16:14:18 +02:00
parent 9867bc947e
commit abc6c31890
54 changed files with 156 additions and 156 deletions

View File

@ -71,7 +71,7 @@ int AudioProperties::sampleRate() const
////////////////////////////////////////////////////////////////////////////////
AudioProperties::AudioProperties(ReadStyle) :
d(0)
d(nullptr)
{
}