aboutsummaryrefslogtreecommitdiffstats
path: root/src/FilterPlugin.hxx
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2013-10-19 18:19:03 +0200
committerMax Kellermann <max@duempel.org>2013-10-19 18:19:03 +0200
commit59f8144c50765189594d5932fc25869f9ea6e265 (patch)
treef460d9f46a99040dea402bcb3ad2d84a0e734285 /src/FilterPlugin.hxx
parent5a7c931293b55a27c3f79c6951707a8d6e2a5f6c (diff)
downloadmpd-59f8144c50765189594d5932fc25869f9ea6e265.tar.gz
mpd-59f8144c50765189594d5932fc25869f9ea6e265.tar.xz
mpd-59f8144c50765189594d5932fc25869f9ea6e265.zip
*: use nullptr instead of NULL
Diffstat (limited to 'src/FilterPlugin.hxx')
-rw-r--r--src/FilterPlugin.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/FilterPlugin.hxx b/src/FilterPlugin.hxx
index 88c786120..5ff4637b3 100644
--- a/src/FilterPlugin.hxx
+++ b/src/FilterPlugin.hxx
@@ -44,9 +44,9 @@ struct filter_plugin {
*
* @param plugin the filter plugin
* @param param optional configuration section
- * @param error location to store the error occurring, or NULL to
+ * @param error location to store the error occurring, or nullptr to
* ignore errors.
- * @return a new filter object, or NULL on error
+ * @return a new filter object, or nullptr on error
*/
Filter *
filter_new(const struct filter_plugin *plugin,
@@ -57,9 +57,9 @@ filter_new(const struct filter_plugin *plugin,
* the specified configuration section.
*
* @param param the configuration section
- * @param error location to store the error occurring, or NULL to
+ * @param error location to store the error occurring, or nullptr to
* ignore errors.
- * @return a new filter object, or NULL on error
+ * @return a new filter object, or nullptr on error
*/
Filter *
filter_configured_new(const config_param &param, Error &error);