From e652a49cbac1098dd97695309336545ef4e9ae89 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Fri, 23 Jun 2017 14:31:26 +0200 Subject: Rename LIBBUTL_EXPORT to LIBBUTL_SYMEXPORT in preparation for modularization --- libbutl/path.cxx | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) (limited to 'libbutl/path.cxx') diff --git a/libbutl/path.cxx b/libbutl/path.cxx index be8bd61..15e9b13 100644 --- a/libbutl/path.cxx +++ b/libbutl/path.cxx @@ -59,7 +59,7 @@ namespace butl // template <> - LIBBUTL_EXPORT path_traits::string_type path_traits:: + LIBBUTL_SYMEXPORT path_traits::string_type path_traits:: current_directory () { #ifdef _WIN32 @@ -77,7 +77,7 @@ namespace butl } template <> - LIBBUTL_EXPORT void path_traits:: + LIBBUTL_SYMEXPORT void path_traits:: current_directory (string_type const& s) { #ifdef _WIN32 @@ -154,7 +154,7 @@ namespace butl #endif template <> - LIBBUTL_EXPORT path_traits::string_type path_traits:: + LIBBUTL_SYMEXPORT path_traits::string_type path_traits:: temp_directory () { #ifdef _WIN32 @@ -171,7 +171,7 @@ namespace butl static atomic temp_name_count; template <> - LIBBUTL_EXPORT path_traits::string_type path_traits:: + LIBBUTL_SYMEXPORT path_traits::string_type path_traits:: temp_name (string_type const& prefix) { // Otherwise compiler get confused with butl::to_string(timestamp). @@ -184,7 +184,7 @@ namespace butl } template <> - LIBBUTL_EXPORT path_traits::string_type path_traits:: + LIBBUTL_SYMEXPORT path_traits::string_type path_traits:: home_directory () { #ifndef _WIN32 @@ -207,7 +207,7 @@ namespace butl #ifndef _WIN32 template <> - LIBBUTL_EXPORT void path_traits:: + LIBBUTL_SYMEXPORT void path_traits:: realize (string_type& s) { char r[PATH_MAX]; @@ -231,7 +231,7 @@ namespace butl // template <> - LIBBUTL_EXPORT path_traits::string_type path_traits:: + LIBBUTL_SYMEXPORT path_traits::string_type path_traits:: current_directory () { #ifdef _WIN32 @@ -253,7 +253,7 @@ namespace butl } template <> - LIBBUTL_EXPORT void path_traits:: + LIBBUTL_SYMEXPORT void path_traits:: current_directory (string_type const& s) { #ifdef _WIN32 @@ -281,7 +281,7 @@ namespace butl } template <> - LIBBUTL_EXPORT path_traits::string_type path_traits:: + LIBBUTL_SYMEXPORT path_traits::string_type path_traits:: temp_directory () { #ifdef _WIN32 @@ -309,7 +309,7 @@ namespace butl } template <> - LIBBUTL_EXPORT path_traits::string_type path_traits:: + LIBBUTL_SYMEXPORT path_traits::string_type path_traits:: temp_name (string_type const& prefix) { return prefix + @@ -318,7 +318,7 @@ namespace butl } template <> - LIBBUTL_EXPORT path_traits::string_type path_traits:: + LIBBUTL_SYMEXPORT path_traits::string_type path_traits:: home_directory () { #ifndef _WIN32 @@ -350,7 +350,7 @@ namespace butl #ifndef _WIN32 template <> - LIBBUTL_EXPORT void path_traits:: + LIBBUTL_SYMEXPORT void path_traits:: realize (string_type&) { assert (false); // Implement if/when needed. @@ -359,7 +359,7 @@ namespace butl #ifdef _WIN32 template <> - LIBBUTL_EXPORT bool + LIBBUTL_SYMEXPORT bool basic_path_append_actual_name (string& r, const string& d, const string& n) @@ -387,7 +387,7 @@ namespace butl } template <> - LIBBUTL_EXPORT bool + LIBBUTL_SYMEXPORT bool basic_path_append_actual_name (wstring&, const wstring&, const wstring&) -- cgit v1.1