summaryrefslogtreecommitdiffstats
path: root/gnu/llvm/tools/clang/lib/Basic/DiagnosticOptions.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'gnu/llvm/tools/clang/lib/Basic/DiagnosticOptions.cpp')
-rw-r--r--gnu/llvm/tools/clang/lib/Basic/DiagnosticOptions.cpp25
1 files changed, 0 insertions, 25 deletions
diff --git a/gnu/llvm/tools/clang/lib/Basic/DiagnosticOptions.cpp b/gnu/llvm/tools/clang/lib/Basic/DiagnosticOptions.cpp
deleted file mode 100644
index ebd9bb45f38..00000000000
--- a/gnu/llvm/tools/clang/lib/Basic/DiagnosticOptions.cpp
+++ /dev/null
@@ -1,25 +0,0 @@
-//===- DiagnosticOptions.cpp - C Language Family Diagnostic Handling ------===//
-//
-// The LLVM Compiler Infrastructure
-//
-// This file is distributed under the University of Illinois Open Source
-// License. See LICENSE.TXT for details.
-//
-//===----------------------------------------------------------------------===//
-//
-// This file implements the DiagnosticOptions related interfaces.
-//
-//===----------------------------------------------------------------------===//
-
-#include "clang/Basic/DiagnosticOptions.h"
-#include "llvm/Support/raw_ostream.h"
-#include <type_traits>
-
-namespace clang {
-
-raw_ostream &operator<<(raw_ostream &Out, DiagnosticLevelMask M) {
- using UT = std::underlying_type<DiagnosticLevelMask>::type;
- return Out << static_cast<UT>(M);
-}
-
-} // namespace clang