aboutsummaryrefslogtreecommitdiff
path: root/odb/location.cxx
blob: 1293e1aade44d7fa6308f7a7c811bb42afc62d60 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// file      : odb/location.cxx
// copyright : Copyright (c) 2009-2018 Code Synthesis Tools CC
// license   : GNU GPL v3; see accompanying LICENSE file

#include <odb/location.hxx>
#include <odb/diagnostics.hxx>

location::
location (location_t l)
    : file (location_file (l)),
      line (location_line (l)),
      column (location_column (l))
{
}