From 06e786fdf686426bafefa41751da17580c740bd5 Mon Sep 17 00:00:00 2001 From: Ivan Romanov Date: Mon, 20 Aug 2018 12:09:58 +0500 Subject: [PATCH] Fix extra const modifier Fix #746 --- include/tidy.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/tidy.h b/include/tidy.h index c701890..7e30216 100644 --- a/include/tidy.h +++ b/include/tidy.h @@ -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