diff options
author | Max Kellermann <max@duempel.org> | 2013-10-02 08:13:28 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2013-10-02 08:56:27 +0200 |
commit | 0214baad5affb78bf64c7774ba48693a3c6d15ee (patch) | |
tree | 79c8c8c13a443f60007db87f65bcbe44941586f3 /src/PlaylistVector.cxx | |
parent | c2d3ed2acc9fdb9b0900b70d427d91b22684a8ec (diff) | |
download | mpd-0214baad5affb78bf64c7774ba48693a3c6d15ee.tar.gz mpd-0214baad5affb78bf64c7774ba48693a3c6d15ee.tar.xz mpd-0214baad5affb78bf64c7774ba48693a3c6d15ee.zip |
Playlist*: use nullptr instead of NULL
Diffstat (limited to 'src/PlaylistVector.cxx')
-rw-r--r-- | src/PlaylistVector.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/PlaylistVector.cxx b/src/PlaylistVector.cxx index 06c7b9ff0..68657af50 100644 --- a/src/PlaylistVector.cxx +++ b/src/PlaylistVector.cxx @@ -31,7 +31,7 @@ PlaylistVector::iterator PlaylistVector::find(const char *name) { assert(holding_db_lock()); - assert(name != NULL); + assert(name != nullptr); return std::find_if(begin(), end(), PlaylistInfo::CompareName(name)); |