From 3790832c62b4f79883b37a4ed8f804c2ae35a6e6 Mon Sep 17 00:00:00 2001 From: Karen Arutyunov Date: Tue, 23 Aug 2016 11:46:11 +0300 Subject: Remove redundant LIBBUTL_EXPORT specifier in utility header --- butl/utility | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) (limited to 'butl') diff --git a/butl/utility b/butl/utility index 757edc2..e2e9b37 100644 --- a/butl/utility +++ b/butl/utility @@ -10,8 +10,6 @@ #include // forward() #include // strcmp(), strlen() -#include - namespace butl { // Convert ASCII character/string case. If there is no upper/lower case @@ -34,13 +32,13 @@ namespace butl std::string ucase (const char*, std::size_t = std::string::npos); std::string ucase (const std::string&); std::string& ucase (std::string&); - LIBBUTL_EXPORT void ucase (char*, std::size_t); + void ucase (char*, std::size_t); char lcase (char); std::string lcase (const char*, std::size_t = std::string::npos); std::string lcase (const std::string&); std::string& lcase (std::string&); - LIBBUTL_EXPORT void lcase (char*, std::size_t); + void lcase (char*, std::size_t); // Compare ASCII characters/strings ignoring case. Behave as if characters // had been converted to the lower case and then byte-compared. Return a @@ -60,8 +58,7 @@ namespace butl int casecmp (const std::string&, const char*, std::size_t = std::string::npos); - LIBBUTL_EXPORT int casecmp (const char*, const char*, - std::size_t = std::string::npos); + int casecmp (const char*, const char*, std::size_t = std::string::npos); bool alpha (char); -- cgit v1.1