aboutsummaryrefslogtreecommitdiff
path: root/Project1/program.cpp
diff options
context:
space:
mode:
authorConnor McDowell <[email protected]>2024-02-18 13:38:36 -0800
committerConnor McDowell <[email protected]>2024-02-18 13:38:36 -0800
commitb3ecf7b864dd292f36ef529cfb5385c0bf6893fe (patch)
treeb9d0cfb5205f5b1806677299428f80f205ad8592 /Project1/program.cpp
parenterrors fixed, vectors and lists made, still working on lists (diff)
downloadlab-01-connormcdowell275-b3ecf7b864dd292f36ef529cfb5385c0bf6893fe.tar.xz
lab-01-connormcdowell275-b3ecf7b864dd292f36ef529cfb5385c0bf6893fe.zip
fixed errors, just looking around to help with another assignment
Diffstat (limited to 'Project1/program.cpp')
-rw-r--r--Project1/program.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Project1/program.cpp b/Project1/program.cpp
index 29033dc..0949855 100644
--- a/Project1/program.cpp
+++ b/Project1/program.cpp
@@ -54,7 +54,7 @@ void createVector()
void Create_list()
{
- int i, t;
+ int i;
std::list<int> myList (SIZE, i);
for (auto i = 0; i < SIZE; i++)
{
@@ -68,7 +68,7 @@ int main()
//createArray();
//createstdArray();
//createVector();
- Create_list();
+ //Create_list();