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>2015-12-30 15:25:54 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2015-12-30 15:25:54 +0300
commit4145a4d08c0d2cede44af21f8fc4edc48cfc1051 (patch)
treeff8931f54e4f41882854f2bff3eaa5892100c963 /extern/libmv/third_party/glog/src/vlog_is_on.cc
parent6b7ead4fe808d6442fe7ae9b7f4ec38de8f35ee0 (diff)
GLog: Solve some compilation warnings
Those are actually sent to a pull-request, see https://github.com/google/glog/pull/81
Diffstat (limited to 'extern/libmv/third_party/glog/src/vlog_is_on.cc')
-rw-r--r--extern/libmv/third_party/glog/src/vlog_is_on.cc6
1 files changed, 6 insertions, 0 deletions
diff --git a/extern/libmv/third_party/glog/src/vlog_is_on.cc b/extern/libmv/third_party/glog/src/vlog_is_on.cc
index 4c95583b683..e8fdbae7dcb 100644
--- a/extern/libmv/third_party/glog/src/vlog_is_on.cc
+++ b/extern/libmv/third_party/glog/src/vlog_is_on.cc
@@ -62,6 +62,12 @@ _START_GOOGLE_NAMESPACE_
namespace glog_internal_namespace_ {
+// Used by logging_unittests.cc so can't make it static here.
+GOOGLE_GLOG_DLL_DECL bool SafeFNMatch_(const char* pattern,
+ size_t patt_len,
+ const char* str,
+ size_t str_len);
+
// Implementation of fnmatch that does not need 0-termination
// of arguments and does not allocate any memory,
// but we only support "*" and "?" wildcards, not the "[...]" patterns.