diff options
author | Nico Weber <nicolasweber@gmx.de> | 2011-04-30 03:13:21 +0000 |
---|---|---|
committer | Nico Weber <nicolasweber@gmx.de> | 2011-04-30 03:13:21 +0000 |
commit | 553e88e2ac61beb7758072ae842b485041f4e5db (patch) | |
tree | fae434a18b9ae91c4dfa7e623611b40f86655530 /examples | |
parent | fddbcb459fad8b3e0a06b431a7eec9ee36743716 (diff) |
Fix gcc 'warning: multi-line comment'.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@130583 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'examples')
-rw-r--r-- | examples/Tooling/ClangCheck.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/Tooling/ClangCheck.cpp b/examples/Tooling/ClangCheck.cpp index 9f0b1dde70..41283759a1 100644 --- a/examples/Tooling/ClangCheck.cpp +++ b/examples/Tooling/ClangCheck.cpp @@ -28,8 +28,8 @@ // // For example, to use clang-check on all files in a subtree of the source // tree, use: -// /path/to/cmake/sources $ find . -name '*.cpp' \ -// |xargs clang-check /path/to/cmake/build +// +// /path/in/subtree $ find . -name '*.cpp'| xargs clang-check /path/to/source // //===----------------------------------------------------------------------===// |