Skip to content

Commit 06e786f

Browse files
committed
Fix extra const modifier
Fix htacg#746
1 parent 86b52dc commit 06e786f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

include/tidy.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -2092,13 +2092,13 @@ TIDY_EXPORT const tidyLocaleMapItem* TIDY_CALL getNextWindowsLanguage( TidyItera
20922092
** @param item An instance of tidyLocalMapItem to query.
20932093
** @result Returns a string with the Windows name of the mapping.
20942094
*/
2095-
TIDY_EXPORT const ctmbstr TIDY_CALL TidyLangWindowsName( const tidyLocaleMapItem *item );
2095+
TIDY_EXPORT ctmbstr TIDY_CALL TidyLangWindowsName( const tidyLocaleMapItem *item );
20962096

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

21032103
/** @}
21042104
** @name Getting Localized Strings

0 commit comments

Comments
 (0)