Rename Array to Vector

Finally get rid of the C style vector, rename the template class to its proper name
This commit is contained in:
topjohnwu
2018-11-08 05:03:59 -05:00
parent b6965105b7
commit 8745c7884e
15 changed files with 52 additions and 56 deletions

View File

@@ -388,7 +388,7 @@ void write_zero(int fd, size_t size) {
lseek(fd, pos + size, SEEK_SET);
}
int file_to_array(const char *filename, Array<CharArray> &arr) {
int file_to_vector(const char *filename, Vector<CharArray> &arr) {
if (access(filename, R_OK) != 0)
return 1;
char *line = nullptr;