mirror of
https://github.com/taglib/taglib.git
synced 2026-06-14 02:09:27 -04:00
Use nullptr (#1117)
Found with modernize-use-nullptr Signed-off-by: Rosen Penev <rosenp@gmail.com>
This commit is contained in:
@@ -77,7 +77,7 @@ namespace
|
||||
{
|
||||
#ifdef _WIN32
|
||||
if(::wcslen(fileName) == 0)
|
||||
return 0;
|
||||
return nullptr;
|
||||
#else
|
||||
if(::strlen(fileName) == 0)
|
||||
return nullptr;
|
||||
|
||||
Reference in New Issue
Block a user