summaryrefslogtreecommitdiff
path: root/odb/pragma.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'odb/pragma.hxx')
-rw-r--r--odb/pragma.hxx5
1 files changed, 3 insertions, 2 deletions
diff --git a/odb/pragma.hxx b/odb/pragma.hxx
index f5714eb..d8c4ab5 100644
--- a/odb/pragma.hxx
+++ b/odb/pragma.hxx
@@ -15,8 +15,8 @@
struct pragma
{
- pragma (std::string const& n, std::string const& v, location_t l)
- : name (n), value (v), loc (l)
+ pragma (std::string const& n, std::string const& v, tree tn, location_t l)
+ : name (n), value (v), node (tn), loc (l)
{
}
@@ -28,6 +28,7 @@ struct pragma
std::string name;
std::string value;
+ tree node;
location_t loc;
};