aboutsummaryrefslogtreecommitdiff
path: root/include/clang/Frontend/FrontendOptions.h
diff options
context:
space:
mode:
authorDaniel Dunbar <daniel@zuster.org>2009-11-12 23:52:56 +0000
committerDaniel Dunbar <daniel@zuster.org>2009-11-12 23:52:56 +0000
commitc86804bc9c3f1953520b59084c9ad75104aba123 (patch)
treecd4b9473d6d114c17cd55fbddf679fdb78cae7ca /include/clang/Frontend/FrontendOptions.h
parent1417c74b825a621a10466b1d5f767553fccab24e (diff)
Move FixItAtLocations into FrontendOptions
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@87046 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Frontend/FrontendOptions.h')
-rw-r--r--include/clang/Frontend/FrontendOptions.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/clang/Frontend/FrontendOptions.h b/include/clang/Frontend/FrontendOptions.h
index da177bc037..27897a240f 100644
--- a/include/clang/Frontend/FrontendOptions.h
+++ b/include/clang/Frontend/FrontendOptions.h
@@ -10,6 +10,7 @@
#ifndef LLVM_CLANG_FRONTEND_FRONTENDOPTIONS_H
#define LLVM_CLANG_FRONTEND_FRONTENDOPTIONS_H
+#include "clang/Frontend/CommandLineSourceLoc.h"
#include <string>
#include <vector>
@@ -36,6 +37,9 @@ public:
/// If given, the name for a C++ class to view the inheritance of.
std::string ViewClassInheritance;
+ /// A list of locations to apply fix-its at.
+ std::vector<ParsedSourceLocation> FixItLocations;
+
public:
FrontendOptions() {
DisableFree = 0;