another bit of refactoring
This commit is contained in:
2
row.cpp
2
row.cpp
@@ -43,7 +43,7 @@ namespace usql {
|
||||
m_columns[col_index] = std::make_unique<ColFloatValue>(value);
|
||||
}
|
||||
|
||||
void Row::setColumnValue(int col_index, std::string value) {
|
||||
void Row::setColumnValue(int col_index, const std::string &value) {
|
||||
m_columns[col_index] = std::make_unique<ColStringValue>(value);
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user