aboutsummaryrefslogtreecommitdiff
path: root/odb/plugin.cxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2015-06-19 19:57:35 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2015-06-19 19:57:35 +0200
commit6e35807bd495c0001cba229fd082e45f0421100e (patch)
tree229d40ebc69bcc9ef04147ef95534ddb39771b8d /odb/plugin.cxx
parentcf469aa28804418338c79a5f9c68608ea2f2807a (diff)
Populate custom type map, make available in context
Diffstat (limited to 'odb/plugin.cxx')
-rw-r--r--odb/plugin.cxx8
1 files changed, 6 insertions, 2 deletions
diff --git a/odb/plugin.cxx b/odb/plugin.cxx
index 51f0cb1..ed7bd14 100644
--- a/odb/plugin.cxx
+++ b/odb/plugin.cxx
@@ -201,13 +201,17 @@ gate_callback (void*, void*)
features f;
+ // Process, pass 1.
+ //
+ process (*options_, f, *u, file_, 1);
+
// Validate, pass 1.
//
validate (*options_, f, *u, file_, 1);
- // Process.
+ // Process, pass 2.
//
- process (*options_, f, *u, file_);
+ process (*options_, f, *u, file_, 2);
// Validate, pass 2.
//