summaryrefslogtreecommitdiff
path: root/odb/location.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'odb/location.hxx')
-rw-r--r--odb/location.hxx26
1 files changed, 0 insertions, 26 deletions
diff --git a/odb/location.hxx b/odb/location.hxx
deleted file mode 100644
index c57848b..0000000
--- a/odb/location.hxx
+++ /dev/null
@@ -1,26 +0,0 @@
-// file : odb/location.hxx
-// copyright : Copyright (c) 2009-2019 Code Synthesis Tools CC
-// license : GNU GPL v3; see accompanying LICENSE file
-
-#ifndef ODB_LOCATION_HXX
-#define ODB_LOCATION_HXX
-
-#include <odb/gcc-fwd.hxx>
-
-#include <cstddef>
-#include <cutl/fs/path.hxx>
-
-struct location
-{
- location (location_t);
- location (cutl::fs::path const& f, std::size_t l, std::size_t c)
- : file (f), line (l), column (c)
- {
- }
-
- cutl::fs::path file;
- std::size_t line;
- std::size_t column;
-};
-
-#endif // ODB_LOCATION_HXX