aboutsummaryrefslogtreecommitdiff
path: root/odb/location.cxx
blob: 23bd7ef567eb42a5f7830c94d79b22d4fb4f2c88 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// file      : odb/location.cxx
// 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))
{
}