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

@ -110,7 +110,7 @@ void SmartPointerDemo::run() {
{
log.info() << "ArrayList<bse::unique_ptr<int>>..." << endl;
bse::Vector<bse::unique_ptr<int>> vec;
bse::vector<bse::unique_ptr<int>> vec;
log.info() << "2x insertion" << endl;
vec.push_back(bse::make_unique<int>(1));
vec.push_back(bse::make_unique<int>(2));

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();