Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Sharybin <sergey.vfx@gmail.com>2016-02-06 17:56:47 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2016-02-06 17:56:47 +0300
commita90d5cd6929d2f3e052a7bd2f1a13a18fa025a91 (patch)
treebd1377ea3536be284759089edcafe7a3514b702e
parente1f5b2b4c11a5081704e889c1800383868f6f855 (diff)
Cycles: Remove workaround for MSVC2010 and Boost
We've upgraded to Boost-1.60 and MSVC2013 since the workaround was originally committed. After checks with current compiler and libraries the original bug is no longer happening. This will make string comparison much faster in Windows, solving synchronization bottlenecks of fewzillion objects. Thanks Martin Felke (aka scorpion81) for the tests!
-rw-r--r--intern/cycles/util/util_path.cpp5
1 files changed, 0 insertions, 5 deletions
diff --git a/intern/cycles/util/util_path.cpp b/intern/cycles/util/util_path.cpp
index e8f1ec81763..06be607b8e9 100644
--- a/intern/cycles/util/util_path.cpp
+++ b/intern/cycles/util/util_path.cpp
@@ -66,11 +66,6 @@ void path_init(const string& path, const string& user_path)
{
cached_path = path;
cached_user_path = user_path;
-
-#ifdef _MSC_VER
- // fix for https://svn.boost.org/trac/boost/ticket/6320
- boost::filesystem::path::imbue( std::locale( "" ) );
-#endif
}
string path_get(const string& sub)