another bug fix.

appending a CreatedQuery to a string was done incorrectly
This commit is contained in:
Robert Klotzner 2013-01-11 20:38:49 +01:00
parent 62522d1d24
commit 96ddd0dfbe
1 changed files with 2 additions and 0 deletions

View File

@ -56,6 +56,8 @@ struct CreatedQuery {
CreatedQuery opBinaryRight(string op)(string left) if(op=="~") {
CreatedQuery res=this;
if(left.length && query.length)
left~=prepend;
res.query=left~res.query;
return res;
}