Skip to content

Commit

Permalink
Is. #746 - Merge PR #747 from drizt/extra-const
Browse files Browse the repository at this point in the history
Fix extra const modifier
  • Loading branch information
geoffmcl authored Jan 14, 2019
2 parents c7d6b7c + 06e786f commit e91a1bb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/tidy.h
Original file line number Diff line number Diff line change
Expand Up @@ -2092,13 +2092,13 @@ TIDY_EXPORT const tidyLocaleMapItem* TIDY_CALL getNextWindowsLanguage( TidyItera
** @param item An instance of tidyLocalMapItem to query.
** @result Returns a string with the Windows name of the mapping.
*/
TIDY_EXPORT const ctmbstr TIDY_CALL TidyLangWindowsName( const tidyLocaleMapItem *item );
TIDY_EXPORT ctmbstr TIDY_CALL TidyLangWindowsName( const tidyLocaleMapItem *item );

/** Given a `tidyLocalMapItem`, return the POSIX name.
** @param item An instance of tidyLocalMapItem to query.
** @result Returns a string with the POSIX name of the mapping.
*/
TIDY_EXPORT const ctmbstr TIDY_CALL TidyLangPosixName( const tidyLocaleMapItem *item );
TIDY_EXPORT ctmbstr TIDY_CALL TidyLangPosixName( const tidyLocaleMapItem *item );

/** @}
** @name Getting Localized Strings
Expand Down

0 comments on commit e91a1bb

Please sign in to comment.