From 63d2400a2c1cff42a8e3ea3d8b4c77b862c82bc7 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Sat, 23 Sep 2017 00:14:37 +0200 Subject: Undo modularization hacks for VC --- libbutl/path.ixx | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) (limited to 'libbutl/path.ixx') 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:: 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:: toupper (char c) { - //@@ MOD VC-ICE return ucase (c); - return std::toupper (c); + return ucase (c); } #endif -- cgit v1.1