Home | History | Annotate | Download | only in Basic
      1 //===--- DiagnosticOptions.cpp - C Language Family Diagnostic Handling ----===//
      2 //
      3 //                     The LLVM Compiler Infrastructure
      4 //
      5 // This file is distributed under the University of Illinois Open Source
      6 // License. See LICENSE.TXT for details.
      7 //
      8 //===----------------------------------------------------------------------===//
      9 //
     10 //  This file implements the DiagnosticOptions related interfaces.
     11 //
     12 //===----------------------------------------------------------------------===//
     13 
     14 #include "clang/Basic/DiagnosticOptions.h"
     15 #include "llvm/Support/raw_ostream.h"
     16 
     17 namespace clang {
     18 
     19 raw_ostream& operator<<(raw_ostream& Out, DiagnosticLevelMask M) {
     20   using UT = std::underlying_type<DiagnosticLevelMask>::type;
     21   return Out << static_cast<UT>(M);
     22 }
     23 
     24 } // end namespace clang
     25