Feature #1979 ยป 0025-server_settings.c-Replace-NULL-with-nullptr.patch
| common/server_settings.c | ||
|---|---|---|
|
***************************************************************************/
|
||
|
const char *server_setting_name_get(server_setting_id id)
|
||
|
{
|
||
|
fc_assert_ret_val(fc_funcs, NULL);
|
||
|
fc_assert_ret_val(fc_funcs->server_setting_name_get, NULL);
|
||
|
fc_assert_ret_val(fc_funcs != nullptr, nullptr);
|
||
|
fc_assert_ret_val(fc_funcs->server_setting_name_get != nullptr, nullptr);
|
||
|
return fc_funcs->server_setting_name_get(id);
|
||
|
}
|
||