diff options
Diffstat (limited to 'qlite/src/row.vala')
-rw-r--r-- | qlite/src/row.vala | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qlite/src/row.vala b/qlite/src/row.vala index 60c7b666..96762be3 100644 --- a/qlite/src/row.vala +++ b/qlite/src/row.vala @@ -8,7 +8,7 @@ public class Row { private Map<string, long> int_map = new HashMap<string, long>(); private Map<string, double?> real_map = new HashMap<string, double?>(); - public Row(Statement stmt) { + internal Row(Statement stmt) { for (int i = 0; i < stmt.column_count(); i++) { switch(stmt.column_type(i)) { case TEXT: |