updated to the new pikotools api: changed utf8 functions PascalCase to snake_case

This commit is contained in:
2021-05-21 00:32:29 +02:00
parent 34274ca230
commit 0ff900f626
5 changed files with 9 additions and 9 deletions

View File

@@ -236,7 +236,7 @@ void Model::get_table_name(std::string & str, bool with_schema_name, ModelData *
pt::WTextStream stream;
get_table_name(stream, with_schema_name, model_data, false);
pt::WideStreamToUTF8(stream, str, clear_string);
pt::wide_stream_to_utf8(stream, str, clear_string);
}