mirror of https://github.com/go-gorm/gorm.git
Merge pull request #589 from rghose/patch-1
this fixes syntax error for go1.3.3
This commit is contained in:
commit
6d4a5f75ee
|
@ -230,7 +230,7 @@ func toQueryMarks(primaryValues [][]interface{}) string {
|
|||
|
||||
for _, primaryValue := range primaryValues {
|
||||
var marks []string
|
||||
for range primaryValue {
|
||||
for _,_ = range primaryValue {
|
||||
marks = append(marks, "?")
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue