~ubuntu-branches/ubuntu/trusty/blender/trusty-proposed

« back to all changes in this revision

Viewing changes to extern/libmv/third_party/glog/src/vlog_is_on.cc

  • Committer: Package Import Robot
  • Author(s): Matteo F. Vescovi
  • Date: 2013-08-14 10:43:49 UTC
  • mfrom: (14.2.19 sid)
  • Revision ID: package-import@ubuntu.com-20130814104349-t1d5mtwkphp12dyj
Tags: 2.68a-3
* Upload to unstable
* debian/: python3.3 Depends simplified
  - debian/control: python3.3 Depends dropped
    for blender-data package
  - 0001-blender_thumbnailer.patch refreshed
* debian/control: libavcodec b-dep versioning dropped

Show diffs side-by-side

added added

removed removed

Lines of Context:
62
62
 
63
63
namespace glog_internal_namespace_ {
64
64
 
 
65
// Put protytype here to suppress strict compiler flags
 
66
GOOGLE_GLOG_DLL_DECL bool SafeFNMatch_(const char* pattern,
 
67
                                       size_t patt_len,
 
68
                                       const char* str,
 
69
                                       size_t str_len);
 
70
 
65
71
// Implementation of fnmatch that does not need 0-termination
66
72
// of arguments and does not allocate any memory,
67
73
// but we only support "*" and "?" wildcards, not the "[...]" patterns.