summaryrefslogtreecommitdiffstats
path: root/pp-trace
diff options
context:
space:
mode:
authorTobias Grosser <tobias@grosser.es>2014-02-28 09:42:12 +0000
committerTobias Grosser <tobias@grosser.es>2014-02-28 09:42:12 +0000
commita0cd5eefbc4d2102c3251bf57a0c476ebcfd57cb (patch)
treec1f96e4a0911ec97bf36893bdb87cfe4f4e3a8d4 /pp-trace
parent238723dd4c859dbdc8b8b259f26e4dfd0cf14a61 (diff)
Add new 'remark' diagnostic type
git-svn-id: https://llvm.org/svn/llvm-project/clang-tools-extra/trunk@202477 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'pp-trace')
-rw-r--r--pp-trace/PPCallbacksTracker.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/pp-trace/PPCallbacksTracker.cpp b/pp-trace/PPCallbacksTracker.cpp
index 55c757d6..465ad1bf 100644
--- a/pp-trace/PPCallbacksTracker.cpp
+++ b/pp-trace/PPCallbacksTracker.cpp
@@ -84,9 +84,9 @@ ConditionValueKindStrings[] = {
};
// Mapping strings.
-static const char *MappingStrings[] = { "0", "MAP_IGNORE",
- "MAP_WARNING", "MAP_ERROR",
- "MAP_FATAL" };
+static const char *MappingStrings[] = { "0", "MAP_IGNORE",
+ "MAP_REMARK", "MAP_WARNING",
+ "MAP_ERROR", "MAP_FATAL" };
// PPCallbacksTracker functions.