aboutsummaryrefslogtreecommitdiff
path: root/odb/relational/validator.cxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2015-06-03 21:35:43 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2015-06-03 21:35:43 +0200
commitbbc39ffe31c67506b4c03fc56fa3adcb925b6325 (patch)
treecdc3e2bb6f66edab684ee184a28c35727246f448 /odb/relational/validator.cxx
parentf0bbc17aeed1b636782a4b92e8191d90f310d0a2 (diff)
Remove gratuitous classes
In the process also get rid of global class processor which conflicts with enum processor on MIPS.
Diffstat (limited to 'odb/relational/validator.cxx')
-rw-r--r--odb/relational/validator.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/odb/relational/validator.cxx b/odb/relational/validator.cxx
index 1d51c9a..47f089c 100644
--- a/odb/relational/validator.cxx
+++ b/odb/relational/validator.cxx
@@ -528,7 +528,7 @@ namespace relational
};
}
- void validator::
+ void
validate (options const&,
features&,
semantics::unit& u,
@@ -608,7 +608,7 @@ namespace relational
}
if (!valid)
- throw failed ();
+ throw operation_failed ();
if (pass == 1)
{
@@ -636,6 +636,6 @@ namespace relational
}
if (!valid)
- throw failed ();
+ throw operation_failed ();
}
}