aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTed Kremenek <kremenek@apple.com>2009-03-13 20:47:27 +0000
committerTed Kremenek <kremenek@apple.com>2009-03-13 20:47:27 +0000
commite8463ef889be035312c2e40fa318bbbcfce02a3e (patch)
treeef8d67538a448a64737c8aa28e53d82d679b0499
parent88ef4c48277cb2444d57e67fd5234d9b0509d7e9 (diff)
Fix typo.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@66944 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--include/clang/Basic/DiagnosticFrontendKinds.td6
1 files changed, 2 insertions, 4 deletions
diff --git a/include/clang/Basic/DiagnosticFrontendKinds.td b/include/clang/Basic/DiagnosticFrontendKinds.td
index 2ab5739787..b17d71b98b 100644
--- a/include/clang/Basic/DiagnosticFrontendKinds.td
+++ b/include/clang/Basic/DiagnosticFrontendKinds.td
@@ -8,8 +8,6 @@
//===----------------------------------------------------------------------===//
let Component = "Frontend" in {
-
-def err_fe_error_reading, Error< "error reading '%0'">
-def err_fe_error_reading_stdin : Error<"error reading stdin">
-
+def err_fe_error_reading : Error< "error reading '%0'">;
+def err_fe_error_reading_stdin : Error<"error reading stdin">;
}