Deleted Added
full compact
CommentOptions.h (249423) CommentOptions.h (251662)
1//===--- CommentOptions.h - Options for parsing comments -----*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//

--- 13 unchanged lines hidden (view full) ---

22
23/// \brief Options for controlling comment parsing.
24struct CommentOptions {
25 typedef std::vector<std::string> BlockCommandNamesTy;
26
27 /// \brief Command names to treat as block commands in comments.
28 /// Should not include the leading backslash.
29 BlockCommandNamesTy BlockCommandNames;
1//===--- CommentOptions.h - Options for parsing comments -----*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//

--- 13 unchanged lines hidden (view full) ---

22
23/// \brief Options for controlling comment parsing.
24struct CommentOptions {
25 typedef std::vector<std::string> BlockCommandNamesTy;
26
27 /// \brief Command names to treat as block commands in comments.
28 /// Should not include the leading backslash.
29 BlockCommandNamesTy BlockCommandNames;
30
31 /// \brief Treat ordinary comments as documentation comments.
32 bool ParseAllComments;
33
34 CommentOptions() : ParseAllComments(false) { }
30};
31
32} // end namespace clang
33
34#endif
35};
36
37} // end namespace clang
38
39#endif