channel.h: Remove redundant declaration.

The DECLARE_STRINGFIELD_SETTERS_FOR() declares ast_channel_name_set()
for us, so no need to declare it separately.

Change-Id: I4813a884ada475ddc62bca480bceb4a53b3ec59a
This commit is contained in:
Sean Bright 2022-08-15 08:34:35 -04:00 committed by Friendly Automation
parent 6000f9963c
commit 57972bac38
1 changed files with 0 additions and 2 deletions

View File

@ -4112,8 +4112,6 @@ struct ast_channel_monitor {
};
/* ACCESSOR FUNCTIONS */
/*! \brief Set the channel name */
void ast_channel_name_set(struct ast_channel *chan, const char *name);
#define DECLARE_STRINGFIELD_SETTERS_FOR(field) \
void ast_channel_##field##_set(struct ast_channel *chan, const char *field); \