aboutsummaryrefslogtreecommitdiff
path: root/libbutl/path.cxx
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/path.cxx
parentc36042925c8d52e3899ea310018cb7243d191306 (diff)
Rename LIBBUTL_EXPORT to LIBBUTL_SYMEXPORT in preparation for modularization
Diffstat (limited to 'libbutl/path.cxx')
-rw-r--r--libbutl/path.cxx28
1 files changed, 14 insertions, 14 deletions
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<char>::string_type path_traits<char>::
+ LIBBUTL_SYMEXPORT path_traits<char>::string_type path_traits<char>::
current_directory ()
{
#ifdef _WIN32
@@ -77,7 +77,7 @@ namespace butl
}
template <>
- LIBBUTL_EXPORT void path_traits<char>::
+ LIBBUTL_SYMEXPORT void path_traits<char>::
current_directory (string_type const& s)
{
#ifdef _WIN32
@@ -154,7 +154,7 @@ namespace butl
#endif
template <>
- LIBBUTL_EXPORT path_traits<char>::string_type path_traits<char>::
+ LIBBUTL_SYMEXPORT path_traits<char>::string_type path_traits<char>::
temp_directory ()
{
#ifdef _WIN32
@@ -171,7 +171,7 @@ namespace butl
static atomic<size_t> temp_name_count;
template <>
- LIBBUTL_EXPORT path_traits<char>::string_type path_traits<char>::
+ LIBBUTL_SYMEXPORT path_traits<char>::string_type path_traits<char>::
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<char>::string_type path_traits<char>::
+ LIBBUTL_SYMEXPORT path_traits<char>::string_type path_traits<char>::
home_directory ()
{
#ifndef _WIN32
@@ -207,7 +207,7 @@ namespace butl
#ifndef _WIN32
template <>
- LIBBUTL_EXPORT void path_traits<char>::
+ LIBBUTL_SYMEXPORT void path_traits<char>::
realize (string_type& s)
{
char r[PATH_MAX];
@@ -231,7 +231,7 @@ namespace butl
//
template <>
- LIBBUTL_EXPORT path_traits<wchar_t>::string_type path_traits<wchar_t>::
+ LIBBUTL_SYMEXPORT path_traits<wchar_t>::string_type path_traits<wchar_t>::
current_directory ()
{
#ifdef _WIN32
@@ -253,7 +253,7 @@ namespace butl
}
template <>
- LIBBUTL_EXPORT void path_traits<wchar_t>::
+ LIBBUTL_SYMEXPORT void path_traits<wchar_t>::
current_directory (string_type const& s)
{
#ifdef _WIN32
@@ -281,7 +281,7 @@ namespace butl
}
template <>
- LIBBUTL_EXPORT path_traits<wchar_t>::string_type path_traits<wchar_t>::
+ LIBBUTL_SYMEXPORT path_traits<wchar_t>::string_type path_traits<wchar_t>::
temp_directory ()
{
#ifdef _WIN32
@@ -309,7 +309,7 @@ namespace butl
}
template <>
- LIBBUTL_EXPORT path_traits<wchar_t>::string_type path_traits<wchar_t>::
+ LIBBUTL_SYMEXPORT path_traits<wchar_t>::string_type path_traits<wchar_t>::
temp_name (string_type const& prefix)
{
return prefix +
@@ -318,7 +318,7 @@ namespace butl
}
template <>
- LIBBUTL_EXPORT path_traits<wchar_t>::string_type path_traits<wchar_t>::
+ LIBBUTL_SYMEXPORT path_traits<wchar_t>::string_type path_traits<wchar_t>::
home_directory ()
{
#ifndef _WIN32
@@ -350,7 +350,7 @@ namespace butl
#ifndef _WIN32
template <>
- LIBBUTL_EXPORT void path_traits<wchar_t>::
+ LIBBUTL_SYMEXPORT void path_traits<wchar_t>::
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<char> (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<wchar_t> (wstring&,
const wstring&,
const wstring&)