src/StreamRelationalWriter.h
branchv_0
changeset 25 135ef93a4ac2
parent 23 d505eaedc35e
child 26 8ae93a43fed2
--- a/src/StreamRelationalWriter.h	Sat Aug 25 17:45:53 2018 +0200
+++ b/src/StreamRelationalWriter.h	Sat Aug 25 18:21:09 2018 +0200
@@ -25,7 +25,7 @@
 	types::BooleanDataTypeWriter booleanWriter;
 	types::IntegerDataTypeWriter integerWriter;
 	types::StringDataTypeWriter stringWriter;
-	vector<DataTypeWriterBase*> writers = {&booleanWriter, &integerWriter, &stringWriter};
+	std::vector<DataTypeWriterBase*> writers = {&booleanWriter, &integerWriter, &stringWriter};
 
 	/**
 	 * count of columns in the current table
@@ -39,7 +39,7 @@
 	/**
 	 * types of columns in the current table
 	 */
-	vector<TypeId> columnTypes;
+	std::vector<TypeId> columnTypes;
 
 	void writeString(const string_t &stringValue, const TypeId typeId) {
 		for (DataTypeWriterBase* writer : writers) if (writer->supports(typeId)) return writer->writeString(output, stringValue);