mirror of
https://github.com/taglib/taglib.git
synced 2025-07-18 21:14:23 -04:00
clang-tidy: Use nullptr instead of 0
run-clang-tidy -header-filter='.*' -checks='-*,modernize-use-nullptr' -fix
This commit is contained in:
@ -34,8 +34,8 @@ using namespace TagLib;
|
||||
class PlainFile : public File {
|
||||
public:
|
||||
explicit PlainFile(FileName name) : File(name) { }
|
||||
Tag *tag() const override { return NULL; }
|
||||
AudioProperties *audioProperties() const override { return NULL; }
|
||||
Tag *tag() const override { return nullptr; }
|
||||
AudioProperties *audioProperties() const override { return nullptr; }
|
||||
bool save() override { return false; }
|
||||
void truncate(long length) { File::truncate(length); }
|
||||
|
||||
|
Reference in New Issue
Block a user