From 8a6807bd92ffd00c2fbd82c3cc7cbe519e9f13ff Mon Sep 17 00:00:00 2001 From: Ben Vanik Date: Fri, 11 Jul 2014 18:43:35 -0700 Subject: [PATCH] Fixing linter to work on Windows (ironically, by breaking it). --- src/poly/cxx_compat.h | 6 +++--- third_party/google-styleguide/cpplint/cpplint.py | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/poly/cxx_compat.h b/src/poly/cxx_compat.h index f0ac6d8fb..080152245 100644 --- a/src/poly/cxx_compat.h +++ b/src/poly/cxx_compat.h @@ -7,8 +7,8 @@ ****************************************************************************** */ -#ifndef POLY_POLY_CXX_COMPAT_H_ -#define POLY_POLY_CXX_COMPAT_H_ +#ifndef POLY_CXX_COMPAT_H_ +#define POLY_CXX_COMPAT_H_ #include @@ -24,4 +24,4 @@ namespace poly {} // namespace poly -#endif // POLY_POLY_CXX_COMPAT_H_ +#endif // POLY_CXX_COMPAT_H_ diff --git a/third_party/google-styleguide/cpplint/cpplint.py b/third_party/google-styleguide/cpplint/cpplint.py index ebe576df4..d3159c627 100644 --- a/third_party/google-styleguide/cpplint/cpplint.py +++ b/third_party/google-styleguide/cpplint/cpplint.py @@ -1553,7 +1553,7 @@ def GetHeaderGuardCPPVariable(filename): fileinfo = FileInfo(filename) file_path_from_root = fileinfo.RepositoryName() if _root: - file_path_from_root = re.sub('^' + _root + os.sep, '', file_path_from_root) + file_path_from_root = re.sub('^' + _root + '\/', '', file_path_from_root) return re.sub(r'[-./\s]', '_', file_path_from_root).upper() + '_'