mirror of
https://github.com/rbock/sqlpp11.git
synced 2026-01-04 12:10:43 -06:00
Fixed possible dangling references problem
This commit is contained in:
@@ -116,9 +116,9 @@ namespace sqlpp
|
||||
static Context& _(const T& t, Context& context)
|
||||
{
|
||||
context << "DELETE";
|
||||
interpret(t._from, context);
|
||||
interpret(t._using, context);
|
||||
interpret(t._where, context);
|
||||
interpret(t._from(), context);
|
||||
interpret(t._using(), context);
|
||||
interpret(t._where(), context);
|
||||
return context;
|
||||
}
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user