good morning!!!!

Skip to content
Snippets Groups Projects
Commit f6b311c4 authored by Peter Kieltyka's avatar Peter Kieltyka
Browse files

Minor style change when testing interface compat

parent 144c7188
No related branches found
No related tags found
No related merge requests found
......@@ -542,10 +542,11 @@ const EnvEnableDebug = `UPPERIO_DB_DEBUG`
// Debug is a variable that, when true, enables query printing.
var Debug = false
// Ensure interface compatibility
var (
_ = Function(&dbFunc{})
_ = Constraints(Cond{})
_ = Compound(Cond{})
_ = Constraint(&constraint{})
_ = RawValue(&rawValue{})
_ Function = &dbFunc{}
_ Constraints = Cond{}
_ Compound = Cond{}
_ Constraint = &constraint{}
_ RawValue = &rawValue{}
)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment