Fixing build with gcc-4.5
http://bugs.gentoo.org/show_bug.cgi?id=318601
Written by Kacper Kowalik <xarthisius.kk@gmail.com>
|
|
|
|
| 96 | 96 | cerr << "sqlite3_compile error:" <<endl; |
| 97 | 97 | cerr << sqlite3_errmsg( m_db ) <<endl; |
| 98 | 98 | cerr << "on insert: " << query <<endl; |
| 99 | | values = list<string>::list(); |
| | 99 | values = list<string>(); |
| 100 | 100 | } else { |
| 101 | 101 | int busyCnt = 0; |
| 102 | 102 | int number = sqlite3_column_count( stmt ); |
| … |
… |
|
| 138 | 138 | cerr << "sqlite_step error.\n"; |
| 139 | 139 | cerr << sqlite3_errmsg( m_db ) << endl; |
| 140 | 140 | cerr << "on query: " << query << endl; |
| 141 | | values = list<string>::list(); |
| | 141 | values = list<string>(); |
| 142 | 142 | } |
| 143 | 143 | } |
| 144 | 144 | |