convert checkColMetadata from a template to a proc

This commit is contained in:
Michael Bradley, Jr 2022-07-13 13:14:16 -05:00
parent 89051a38ea
commit a62fffcb3f
No known key found for this signature in database
GPG Key ID: D0307DBCF21A9A58

View File

@ -97,7 +97,7 @@ const
) VALUES (?, ?, ?);
"""
template checkColMetadata(s: RawStmtPtr, i: int, expectedName: string) =
proc checkColMetadata(s: RawStmtPtr, i: int, expectedName: string) =
let
colName = sqlite3_column_origin_name(s, i.cint)