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-22 07:09:58 +02:00
parent 9867bc947e
commit abc6c31890
54 changed files with 156 additions and 156 deletions
+1 -1
View File
@@ -71,7 +71,7 @@ int AudioProperties::sampleRate() const
////////////////////////////////////////////////////////////////////////////////
AudioProperties::AudioProperties(ReadStyle) :
d(0)
d(nullptr)
{
}