diff options
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;} |