1

rename Vector to vector

This commit is contained in:
2022-07-23 21:37:00 +02:00
parent c8db2c8878
commit c95361552a
8 changed files with 23 additions and 27 deletions

View File

@ -1,6 +1,6 @@
#include "user/demo/VectorDemo.h"
void print(bse::Vector<int> list) {
void print(bse::vector<int> list) {
kout << "Printing List: ";
for (int i : list) {
kout << i << " ";
@ -9,7 +9,7 @@ void print(bse::Vector<int> list) {
}
void VectorDemo::run() {
bse::Vector<int> list;
bse::vector<int> list;
kout.lock();
kout.clear();