Fix iwyu include path
Project: http://git-wip-us.apache.org/repos/asf/incubator-quickstep/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-quickstep/commit/c2ed5c69 Tree: http://git-wip-us.apache.org/repos/asf/incubator-quickstep/tree/c2ed5c69 Diff: http://git-wip-us.apache.org/repos/asf/incubator-quickstep/diff/c2ed5c69 Branch: refs/heads/fix-iwyu Commit: c2ed5c69b6b8dad07d7410beb0c8292ea1a746e0 Parents: 023c43a Author: Jianqiao Zhu <[email protected]> Authored: Fri Sep 1 15:07:41 2017 -0500 Committer: Jianqiao Zhu <[email protected]> Committed: Mon Feb 26 13:15:06 2018 -0600 ---------------------------------------------------------------------- third_party/src/iwyu/iwyu_helper.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-quickstep/blob/c2ed5c69/third_party/src/iwyu/iwyu_helper.py ---------------------------------------------------------------------- diff --git a/third_party/src/iwyu/iwyu_helper.py b/third_party/src/iwyu/iwyu_helper.py index dff4d55..42bf84c 100755 --- a/third_party/src/iwyu/iwyu_helper.py +++ b/third_party/src/iwyu/iwyu_helper.py @@ -22,12 +22,12 @@ QUICKSTEP_INCLUDES = [ '.', './build/third_party/gflags/include', './build/third_party/protobuf/include', './build/third_party/tmb/include', - './third_party/benchmark/include', - './third_party/glog/src', - './third_party/googletest/googletest/include', - './third_party/protobuf/src', - './third_party/re2', - './third_party/tmb/include'] + './third_party/src/benchmark/include', + './third_party/src/glog/src', + './third_party/src/googletest/googletest/include', + './third_party/src/protobuf/src', + './third_party/src/re2', + './third_party/src/tmb/include'] QUICKSTEP_DEFINES = [ '-DQUICKSTEP_DEBUG', '-DQUICKSTEP_ENABLE_VECTOR_COPY_ELISION_SELECTION', ] CLANG_FLAGS = [ '-std=c++14', '-x', 'c++', ]
