Fixed -Wdocumentation warning

llvm-svn: 263908
This commit is contained in:
Simon Pilgrim 2016-03-20 16:25:23 +00:00
parent c44472a5bc
commit 2714c49e96
1 changed files with 6 additions and 6 deletions

View File

@ -130,7 +130,7 @@ public:
const FrontendInputFile &getCurrentInput() const {
return CurrentInput;
}
const StringRef getCurrentFile() const {
assert(!CurrentInput.isEmpty() && "No current file!");
return CurrentInput.getFile();
@ -157,7 +157,7 @@ public:
/// @name Supported Modes
/// @{
/// \brief Is this action invoked on a model file?
/// \brief Is this action invoked on a model file?
///
/// Model files are incomplete translation units that relies on type
/// information from another translation unit. Check ParseModelFileAction for
@ -251,10 +251,10 @@ public:
const std::vector<std::string> &arg) = 0;
enum ActionType {
Cmdline, //< Action is determined by the cc1 command-line
ReplaceAction, //< Replace the main action
AddBeforeMainAction, //< Execute the action before the main action
AddAfterMainAction //< Execute the action after the main action
Cmdline, ///< Action is determined by the cc1 command-line
ReplaceAction, ///< Replace the main action
AddBeforeMainAction, ///< Execute the action before the main action
AddAfterMainAction ///< Execute the action after the main action
};
/// \brief Get the action type for this plugin
///