Fix typo in deprecated warning. (#848)

"it's" instead of its

Signed-off-by: Luca Della Vedova <luca@openrobotics.org>
This commit is contained in:
Luca Della Vedova 2019-09-10 11:30:42 +08:00 committed by Dirk Thomas
parent 458967bb56
commit 925460dcfb
2 changed files with 2 additions and 2 deletions

View file

@ -814,7 +814,7 @@ public:
* \param[in] alternative_value Value to be used if the parameter was not set. * \param[in] alternative_value Value to be used if the parameter was not set.
*/ */
template<typename ParameterT> template<typename ParameterT>
[[deprecated("use declare_parameter() and it's return value instead")]] [[deprecated("use declare_parameter() and its return value instead")]]
void void
get_parameter_or_set( get_parameter_or_set(
const std::string & name, const std::string & name,

View file

@ -505,7 +505,7 @@ public:
*/ */
template<typename ParameterT> template<typename ParameterT>
// cppcheck-suppress syntaxError // bug in cppcheck 1.82 for [[deprecated]] on templated function // cppcheck-suppress syntaxError // bug in cppcheck 1.82 for [[deprecated]] on templated function
[[deprecated("use declare_parameter() and it's return value instead")]] [[deprecated("use declare_parameter() and its return value instead")]]
void void
get_parameter_or_set( get_parameter_or_set(
const std::string & name, const std::string & name,