Repository: lucy Updated Branches: refs/heads/master d50744eed -> a4d556b2c
Make PolyCompiler abstract. PolyQuery is abstract; PolyCompiler should be, too. Also, remove declaration of `new`, which does not have an accompanying implementation. Project: http://git-wip-us.apache.org/repos/asf/lucy/repo Commit: http://git-wip-us.apache.org/repos/asf/lucy/commit/bb949602 Tree: http://git-wip-us.apache.org/repos/asf/lucy/tree/bb949602 Diff: http://git-wip-us.apache.org/repos/asf/lucy/diff/bb949602 Branch: refs/heads/master Commit: bb94960275512d9300968817f952513bc97eb585 Parents: d50744e Author: Marvin Humphrey <[email protected]> Authored: Mon Jul 20 12:50:45 2015 -0700 Committer: Marvin Humphrey <[email protected]> Committed: Mon Jul 20 12:50:45 2015 -0700 ---------------------------------------------------------------------- core/Lucy/Search/PolyQuery.cfh | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/lucy/blob/bb949602/core/Lucy/Search/PolyQuery.cfh ---------------------------------------------------------------------- diff --git a/core/Lucy/Search/PolyQuery.cfh b/core/Lucy/Search/PolyQuery.cfh index 7a9f6f8..994b434 100644 --- a/core/Lucy/Search/PolyQuery.cfh +++ b/core/Lucy/Search/PolyQuery.cfh @@ -66,13 +66,10 @@ public abstract class Lucy::Search::PolyQuery inherits Lucy::Search::Query { Destroy(PolyQuery *self); } -class Lucy::Search::PolyCompiler inherits Lucy::Search::Compiler { +abstract class Lucy::Search::PolyCompiler inherits Lucy::Search::Compiler { Vector *children; - inert incremented PolyCompiler* - new(PolyQuery *parent, Searcher *searcher, float boost); - /** Initialize the Compiler, creating a Compiler child for each child * Query. Normalization is left to the subclass. */
