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
path: root/tests
diff options
context:
space:
mode:
authorSergey Sharybin <sergey.vfx@gmail.com>2014-12-31 13:55:00 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2014-12-31 14:02:04 +0300
commitcaa2306d16e879659cdbef4ec54752637fb5c474 (patch)
tree1255c9cdbdc9d18f67b40cb755ca58897e5cefd2 /tests
parent784517dfb9650f284d5f7e283b47233c00183686 (diff)
Libmv: Update to latest upstream version
Main purpose of this is to bring new gflags library which is more likely to have a fix for undefined order of static variables initialization and also to bring new glog where some compilation error are fixed (which are only visible with more strict checks with clang and c++11 enabled).
Diffstat (limited to 'tests')
-rw-r--r--tests/gtests/testing/testing_main.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/gtests/testing/testing_main.cc b/tests/gtests/testing/testing_main.cc
index ef8e743b642..b2dcc445aca 100644
--- a/tests/gtests/testing/testing_main.cc
+++ b/tests/gtests/testing/testing_main.cc
@@ -28,7 +28,7 @@
int main(int argc, char **argv) {
testing::InitGoogleTest(&argc, argv);
- google::ParseCommandLineFlags(&argc, &argv, true);
+ gflags::ParseCommandLineFlags(&argc, &argv, true);
google::InitGoogleLogging(argv[0]);
return RUN_ALL_TESTS();