aboutsummaryrefslogtreecommitdiff
path: root/odb/location.cxx
blob: 03b3faaf3b56b5d3ace483454e98b2f1b1444277 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// file      : odb/location.cxx
// copyright : Copyright (c) 2009-2015 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))
{
}