diff options
author | Max Kellermann <max@duempel.org> | 2013-10-19 18:19:03 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2013-10-19 18:19:03 +0200 |
commit | 59f8144c50765189594d5932fc25869f9ea6e265 (patch) | |
tree | f460d9f46a99040dea402bcb3ad2d84a0e734285 /src/TextFile.hxx | |
parent | 5a7c931293b55a27c3f79c6951707a8d6e2a5f6c (diff) | |
download | mpd-59f8144c50765189594d5932fc25869f9ea6e265.tar.gz mpd-59f8144c50765189594d5932fc25869f9ea6e265.tar.xz mpd-59f8144c50765189594d5932fc25869f9ea6e265.zip |
*: use nullptr instead of NULL
Diffstat (limited to 'src/TextFile.hxx')
-rw-r--r-- | src/TextFile.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/TextFile.hxx b/src/TextFile.hxx index 4291f2639..9d8608711 100644 --- a/src/TextFile.hxx +++ b/src/TextFile.hxx @@ -53,7 +53,7 @@ public: * * @param file the source file, opened in text mode * @param buffer an allocator for the buffer - * @return a pointer to the line, or NULL on end-of-file or error + * @return a pointer to the line, or nullptr on end-of-file or error */ char *ReadLine(); }; |