diff options
| -rw-r--r-- | clang-tools-extra/modularize/Modularize.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/clang-tools-extra/modularize/Modularize.cpp b/clang-tools-extra/modularize/Modularize.cpp index babade8f999..f6eccec54fd 100644 --- a/clang-tools-extra/modularize/Modularize.cpp +++ b/clang-tools-extra/modularize/Modularize.cpp @@ -178,10 +178,10 @@ using namespace llvm::opt; using namespace Modularize; // Option to specify a file name for a list of header files to check. -cl::list<std::string>
-ListFileNames(cl::Positional, cl::value_desc("list"),
- cl::desc("<list of one or more header list files>"),
- cl::CommaSeparated);
+cl::list<std::string> +ListFileNames(cl::Positional, cl::value_desc("list"), + cl::desc("<list of one or more header list files>"), + cl::CommaSeparated); // Collect all other arguments, which will be passed to the front end. cl::list<std::string> |

