Re move ANDROID pragma. This is not useful anymore (libicu) is now included

This commit is contained in:
kelson42 2014-10-01 20:26:43 +02:00
parent 49d13f09f1
commit f6f49a63ce
2 changed files with 0 additions and 8 deletions

View File

@ -33,8 +33,6 @@ void kiwix::loadICUExternalTables() {
#endif
}
#ifndef __ANDROID__
/* Prepare integer for display */
std::string kiwix::beautifyInteger(const unsigned int number) {
std::stringstream numberStream;
@ -143,8 +141,6 @@ std::string kiwix::urlEncode(const std::string &c) {
return escaped;
}
#endif
static char charFromHex(std::string a) {
std::istringstream Blat(a);
int Z;

View File

@ -39,8 +39,6 @@
namespace kiwix {
#ifndef __ANDROID__
std::string removeAccents(const std::string &text);
std::string beautifyInteger(const unsigned int number);
std::string beautifyFileSize(const unsigned int number);
@ -49,8 +47,6 @@ namespace kiwix {
void printStringInHexadecimal(UnicodeString s);
void stringReplacement(std::string& str, const std::string& oldStr, const std::string& newStr);
#endif
void loadICUExternalTables();
std::string urlDecode(const std::string &c);