aboutsummaryrefslogtreecommitdiff
path: root/libbutl/utility.hxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2017-06-23 14:31:26 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2017-06-23 14:31:26 +0200
commite652a49cbac1098dd97695309336545ef4e9ae89 (patch)
tree1af0a5270d06e05e788c1342e1cc35723106b7ec /libbutl/utility.hxx
parentc36042925c8d52e3899ea310018cb7243d191306 (diff)
Rename LIBBUTL_EXPORT to LIBBUTL_SYMEXPORT in preparation for modularization
Diffstat (limited to 'libbutl/utility.hxx')
-rw-r--r--libbutl/utility.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/libbutl/utility.hxx b/libbutl/utility.hxx
index 448f386..3a994bb 100644
--- a/libbutl/utility.hxx
+++ b/libbutl/utility.hxx
@@ -30,10 +30,10 @@ namespace butl
//
// See also the exception sanitization below.
//
- [[noreturn]] LIBBUTL_EXPORT void
+ [[noreturn]] LIBBUTL_SYMEXPORT void
throw_generic_error (int errno_code, const char* what = nullptr);
- [[noreturn]] LIBBUTL_EXPORT void
+ [[noreturn]] LIBBUTL_SYMEXPORT void
throw_system_error (int system_code, int fallback_errno_code = 0);
// Convert ASCII character/string case. If there is no upper/lower case
@@ -219,7 +219,7 @@ namespace butl
// use a wrapper functions.
//
#ifdef _WIN32
- LIBBUTL_EXPORT bool&
+ LIBBUTL_SYMEXPORT bool&
exception_unwinding_dtor ();
#else
inline bool&
@@ -255,7 +255,7 @@ namespace std
// - stripping system error redundant suffix (see utility.cxx)
// - lower-case the first letter if the beginning looks like a word
//
- LIBBUTL_EXPORT ostream&
+ LIBBUTL_SYMEXPORT ostream&
operator<< (ostream&, const exception&);
}