From 59f8144c50765189594d5932fc25869f9ea6e265 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Sat, 19 Oct 2013 18:19:03 +0200 Subject: *: use nullptr instead of NULL --- src/FilterPlugin.hxx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/FilterPlugin.hxx') 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 ¶m, Error &error); -- cgit v1.2.3