blob: 1aa58f03182bd5d2c4cfd432724cc36feeb46ef8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
// file : bbot/diagnostics.cxx -*- C++ -*-
// copyright : Copyright (c) 2014-2017 Code Synthesis Ltd
// license : MIT; see accompanying LICENSE file
#include <bbot/diagnostics>
using namespace std;
using namespace butl;
namespace bbot
{
// Diagnostics verbosity level.
//
uint16_t verb;
// Diagnostic facility, project specifics.
//
void simple_prologue_base::
operator() (const diag_record& r) const
{
if (type_ != nullptr)
r << type_ << ": ";
if (name_ != nullptr)
r << name_ << ": ";
}
void location_prologue_base::
operator() (const diag_record& r) const
{
r << loc_.file << ':' << loc_.line << ':' << loc_.column << ": ";
if (type_ != nullptr)
r << type_ << ": ";
if (name_ != nullptr)
r << name_ << ": ";
}
const basic_mark error ("error");
const basic_mark warn ("warning");
const basic_mark info ("info");
const basic_mark text (nullptr);
const fail_mark fail ("error");
const fail_end endf;
}
|