make str_pool return const char * instead of char *

This commit is contained in:
Andrzej Rybczak
2009-07-10 14:44:20 +02:00
parent d8b8d4aeda
commit 209f5337ee
6 changed files with 32 additions and 32 deletions

View File

@@ -35,8 +35,8 @@ void locale_to_utf(std::string &);
std::string utf_to_locale_cpy(const std::string &s);
std::string locale_to_utf_cpy(const std::string &s);
void str_pool_utf_to_locale(char *&);
void str_pool_locale_to_utf(char *&);
void str_pool_utf_to_locale(const char *&);
void str_pool_locale_to_utf(const char *&);
#else