diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2016-07-26 22:36:33 +0300 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2016-07-28 19:44:42 +0300 |
commit | 6597c9b777b608a96974b4a7a8c15234b05ffdd8 (patch) | |
tree | 59f588c71ffdf7069e5c765a8ddf5f93610e7e4f /butl/utility | |
parent | 2ddc00326a9d6b647e7213212d0241a60be68256 (diff) |
Cleanup DLL export/import
Diffstat (limited to 'butl/utility')
-rw-r--r-- | butl/utility | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/butl/utility b/butl/utility index 2436616..101d503 100644 --- a/butl/utility +++ b/butl/utility @@ -15,7 +15,7 @@ namespace butl { // Key comparators (i.e., to be used in sets, maps, etc). // - struct LIBBUTL_EXPORT compare_c_string + struct compare_c_string { bool operator() (const char* x, const char* y) const { @@ -23,7 +23,7 @@ namespace butl } }; - struct LIBBUTL_EXPORT compare_pointer_target + struct compare_pointer_target { template <typename P> bool operator() (const P& x, const P& y) const {return *x < *y;} |