1
0
mirror of https://github.com/MontFerret/ferret.git synced 2025-08-13 19:52:52 +02:00

Fix unused-parameter errors

This commit is contained in:
David Landry
2018-10-05 17:20:48 -04:00
parent a4ce880d9c
commit b970bf5a2b
12 changed files with 16 additions and 16 deletions

View File

@@ -14,7 +14,7 @@ type baseOperator struct {
right core.Expression
}
func (operator *baseOperator) Exec(ctx context.Context, scope *core.Scope) (core.Value, error) {
func (operator *baseOperator) Exec(_ context.Context, _ *core.Scope) (core.Value, error) {
return values.None, core.ErrInvalidOperation
}