aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2016-08-23 11:46:11 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2016-08-23 11:46:11 +0300
commit3790832c62b4f79883b37a4ed8f804c2ae35a6e6 (patch)
treec2f37bf434657050fd2d5afb1431b5a2d90c77a6
parent0a1f1a516321cd9a623bedb39f7626142103109b (diff)
Remove redundant LIBBUTL_EXPORT specifier in utility header
-rw-r--r--butl/utility9
1 files changed, 3 insertions, 6 deletions
diff --git a/butl/utility b/butl/utility
index 757edc2..e2e9b37 100644
--- a/butl/utility
+++ b/butl/utility
@@ -10,8 +10,6 @@
#include <utility> // forward()
#include <cstring> // strcmp(), strlen()
-#include <butl/export>
-
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);