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 | 1f41ab05f51230d67f0a54ae88f30f72bcf72ad6 (patch) | |
tree | 4dc75b316eff60543774c10a8e09744e74db56cd /clang/examples | |
parent | d50e5eb8c307bdfddba97a6b7dd1adae466b1bd6 (diff) | |
download | bcm5719-llvm-1f41ab05f51230d67f0a54ae88f30f72bcf72ad6.tar.gz bcm5719-llvm-1f41ab05f51230d67f0a54ae88f30f72bcf72ad6.zip |
Fix gcc 'warning: multi-line comment'.
llvm-svn: 130583
Diffstat (limited to 'clang/examples')
-rw-r--r-- | clang/examples/Tooling/ClangCheck.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/examples/Tooling/ClangCheck.cpp b/clang/examples/Tooling/ClangCheck.cpp index 9f0b1dde706..41283759a10 100644 --- a/clang/examples/Tooling/ClangCheck.cpp +++ b/clang/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 // //===----------------------------------------------------------------------===// |