aboutsummaryrefslogtreecommitdiff
path: root/libbutl/path.ixx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2017-09-23 00:14:37 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2017-09-23 00:14:37 +0200
commit63d2400a2c1cff42a8e3ea3d8b4c77b862c82bc7 (patch)
tree6c86fc57033b472818bdc89c873b204d8fafbc6e /libbutl/path.ixx
parentc09cd7512491cee1e82c1ad8128ce9fd4bc3f79b (diff)
Undo modularization hacks for VC
Diffstat (limited to 'libbutl/path.ixx')
-rw-r--r--libbutl/path.ixx8
1 files changed, 2 insertions, 6 deletions
diff --git a/libbutl/path.ixx b/libbutl/path.ixx
index f983f5d..f86a57e 100644
--- a/libbutl/path.ixx
+++ b/libbutl/path.ixx
@@ -6,21 +6,17 @@ LIBBUTL_MODEXPORT namespace butl //@@ MOD Clang needs this for some reason.
{
#ifdef _WIN32
template <>
- LIBBUTL_SYMEXPORT //@@ MOD VC needs it for some reason.
inline char path_traits<char>::
tolower (char c)
{
- //@@ MOD VC-ICE return lcase (c);
- return std::tolower (c);
+ return lcase (c);
}
template <>
- LIBBUTL_SYMEXPORT //@@ MOD VC needs it for some reason.
inline char path_traits<char>::
toupper (char c)
{
- //@@ MOD VC-ICE return ucase (c);
- return std::toupper (c);
+ return ucase (c);
}
#endif