aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author[email protected] <[email protected]>2022-10-20 20:12:36 -0700
committer[email protected] <[email protected]>2022-10-20 20:12:36 -0700
commit1d72e28df6857b84d353becf814ca58548964f86 (patch)
treea7bccaa5ffb5c7bacaf48b02b081359053334923
parentI am a push (diff)
downloadcst116-ch10-debugging-smith-benjamin-1d72e28df6857b84d353becf814ca58548964f86.tar.xz
cst116-ch10-debugging-smith-benjamin-1d72e28df6857b84d353becf814ca58548964f86.zip
John Lenon was not my president
-rw-r--r--.gitignore1
-rw-r--r--CST116-Ch10-Debugging/CST116-Ch10-Debugging.cpp6
-rw-r--r--CST116-Ch10-Debugging/x64/Debug/CST116-C.25de9f3e.tlog/CL.command.1.tlogbin0 -> 974 bytes
-rw-r--r--CST116-Ch10-Debugging/x64/Debug/CST116-C.25de9f3e.tlog/CL.read.1.tlogbin0 -> 20390 bytes
-rw-r--r--CST116-Ch10-Debugging/x64/Debug/CST116-C.25de9f3e.tlog/CL.write.1.tlogbin0 -> 912 bytes
-rw-r--r--CST116-Ch10-Debugging/x64/Debug/CST116-C.25de9f3e.tlog/CST116-Ch10-Debugging.lastbuildstate2
-rw-r--r--CST116-Ch10-Debugging/x64/Debug/CST116-C.25de9f3e.tlog/link.command.1.tlogbin0 -> 1820 bytes
-rw-r--r--CST116-Ch10-Debugging/x64/Debug/CST116-C.25de9f3e.tlog/link.read.1.tlogbin0 -> 3682 bytes
-rw-r--r--CST116-Ch10-Debugging/x64/Debug/CST116-C.25de9f3e.tlog/link.write.1.tlogbin0 -> 996 bytes
-rw-r--r--CST116-Ch10-Debugging/x64/Debug/CST116-Ch10-Debugging.exebin0 -> 95744 bytes
-rw-r--r--CST116-Ch10-Debugging/x64/Debug/CST116-Ch10-Debugging.exe.recipe11
-rw-r--r--CST116-Ch10-Debugging/x64/Debug/CST116-Ch10-Debugging.ilkbin0 -> 894480 bytes
-rw-r--r--CST116-Ch10-Debugging/x64/Debug/CST116-Ch10-Debugging.log2
-rw-r--r--CST116-Ch10-Debugging/x64/Debug/CST116-Ch10-Debugging.objbin0 -> 154302 bytes
-rw-r--r--CST116-Ch10-Debugging/x64/Debug/CST116-Ch10-Debugging.pdbbin0 -> 1634304 bytes
-rw-r--r--CST116-Ch10-Debugging/x64/Debug/CST116-Ch10-Debugging.vcxproj.FileListAbsolute.txt1
-rw-r--r--CST116-Ch10-Debugging/x64/Debug/vc143.idbbin0 -> 166912 bytes
-rw-r--r--CST116-Ch10-Debugging/x64/Debug/vc143.pdbbin0 -> 462848 bytes
18 files changed, 20 insertions, 3 deletions
diff --git a/.gitignore b/.gitignore
index e0f1273..2b5792d 100644
--- a/.gitignore
+++ b/.gitignore
@@ -3,3 +3,4 @@
################################################################################
/.vs/cst116-ch10-debugging-Smith-Benjamin/v17
+/CST116-Ch10-Debugging/.vs/CST116-Ch10-Debugging
diff --git a/CST116-Ch10-Debugging/CST116-Ch10-Debugging.cpp b/CST116-Ch10-Debugging/CST116-Ch10-Debugging.cpp
index 1e3d58b..a2831ed 100644
--- a/CST116-Ch10-Debugging/CST116-Ch10-Debugging.cpp
+++ b/CST116-Ch10-Debugging/CST116-Ch10-Debugging.cpp
@@ -84,11 +84,11 @@ void FunctionTwo(const int varX[], const int varY[], int varZ[]);
void PrintFunction(const int varX[], const int varY[],
const int varZ[]);
-const int SIZE = 5;
+const int SIZE = 10;
int main()
{
- int varX[5];
+ int varX[SIZE];
int varY[SIZE];
int varZ[SIZE]; // Notice how we used the const here!
@@ -126,7 +126,7 @@ void FunctionOne(int varX[], int varY[])
// Put breakpoint on the following line
varX[x] = x;
- for (int x = 0; x < 5; x++)
+ for (int x = 0; x < SIZE; x++)
varY[x] = x + 100;
}
void FunctionTwo(const int varX[], const int varY[], int varZ[])
diff --git a/CST116-Ch10-Debugging/x64/Debug/CST116-C.25de9f3e.tlog/CL.command.1.tlog b/CST116-Ch10-Debugging/x64/Debug/CST116-C.25de9f3e.tlog/CL.command.1.tlog
new file mode 100644
index 0000000..f513665
--- /dev/null
+++ b/CST116-Ch10-Debugging/x64/Debug/CST116-C.25de9f3e.tlog/CL.command.1.tlog
Binary files differ
diff --git a/CST116-Ch10-Debugging/x64/Debug/CST116-C.25de9f3e.tlog/CL.read.1.tlog b/CST116-Ch10-Debugging/x64/Debug/CST116-C.25de9f3e.tlog/CL.read.1.tlog
new file mode 100644
index 0000000..327e2f0
--- /dev/null
+++ b/CST116-Ch10-Debugging/x64/Debug/CST116-C.25de9f3e.tlog/CL.read.1.tlog
Binary files differ
diff --git a/CST116-Ch10-Debugging/x64/Debug/CST116-C.25de9f3e.tlog/CL.write.1.tlog b/CST116-Ch10-Debugging/x64/Debug/CST116-C.25de9f3e.tlog/CL.write.1.tlog
new file mode 100644
index 0000000..d47fe49
--- /dev/null
+++ b/CST116-Ch10-Debugging/x64/Debug/CST116-C.25de9f3e.tlog/CL.write.1.tlog
Binary files differ
diff --git a/CST116-Ch10-Debugging/x64/Debug/CST116-C.25de9f3e.tlog/CST116-Ch10-Debugging.lastbuildstate b/CST116-Ch10-Debugging/x64/Debug/CST116-C.25de9f3e.tlog/CST116-Ch10-Debugging.lastbuildstate
new file mode 100644
index 0000000..e838982
--- /dev/null
+++ b/CST116-Ch10-Debugging/x64/Debug/CST116-C.25de9f3e.tlog/CST116-Ch10-Debugging.lastbuildstate
@@ -0,0 +1,2 @@
+PlatformToolSet=v143:VCToolArchitecture=Native64Bit:VCToolsVersion=14.33.31629:TargetPlatformVersion=10.0.19041.0:
+Debug|x64|C:\Users\cowpi\Source\Repos\cst116-ch10-debugging-Smith-Benjamin\CST116-Ch10-Debugging\|
diff --git a/CST116-Ch10-Debugging/x64/Debug/CST116-C.25de9f3e.tlog/link.command.1.tlog b/CST116-Ch10-Debugging/x64/Debug/CST116-C.25de9f3e.tlog/link.command.1.tlog
new file mode 100644
index 0000000..a0ba0b7
--- /dev/null
+++ b/CST116-Ch10-Debugging/x64/Debug/CST116-C.25de9f3e.tlog/link.command.1.tlog
Binary files differ
diff --git a/CST116-Ch10-Debugging/x64/Debug/CST116-C.25de9f3e.tlog/link.read.1.tlog b/CST116-Ch10-Debugging/x64/Debug/CST116-C.25de9f3e.tlog/link.read.1.tlog
new file mode 100644
index 0000000..4f7bdbe
--- /dev/null
+++ b/CST116-Ch10-Debugging/x64/Debug/CST116-C.25de9f3e.tlog/link.read.1.tlog
Binary files differ
diff --git a/CST116-Ch10-Debugging/x64/Debug/CST116-C.25de9f3e.tlog/link.write.1.tlog b/CST116-Ch10-Debugging/x64/Debug/CST116-C.25de9f3e.tlog/link.write.1.tlog
new file mode 100644
index 0000000..87e6b94
--- /dev/null
+++ b/CST116-Ch10-Debugging/x64/Debug/CST116-C.25de9f3e.tlog/link.write.1.tlog
Binary files differ
diff --git a/CST116-Ch10-Debugging/x64/Debug/CST116-Ch10-Debugging.exe b/CST116-Ch10-Debugging/x64/Debug/CST116-Ch10-Debugging.exe
new file mode 100644
index 0000000..a67378d
--- /dev/null
+++ b/CST116-Ch10-Debugging/x64/Debug/CST116-Ch10-Debugging.exe
Binary files differ
diff --git a/CST116-Ch10-Debugging/x64/Debug/CST116-Ch10-Debugging.exe.recipe b/CST116-Ch10-Debugging/x64/Debug/CST116-Ch10-Debugging.exe.recipe
new file mode 100644
index 0000000..d0368b1
--- /dev/null
+++ b/CST116-Ch10-Debugging/x64/Debug/CST116-Ch10-Debugging.exe.recipe
@@ -0,0 +1,11 @@
+<?xml version="1.0" encoding="utf-8"?>
+<Project>
+ <ProjectOutputs>
+ <ProjectOutput>
+ <FullPath>C:\Users\cowpi\Source\Repos\cst116-ch10-debugging-Smith-Benjamin\CST116-Ch10-Debugging\x64\Debug\CST116-Ch10-Debugging.exe</FullPath>
+ </ProjectOutput>
+ </ProjectOutputs>
+ <ContentFiles />
+ <SatelliteDlls />
+ <NonRecipeFileRefs />
+</Project> \ No newline at end of file
diff --git a/CST116-Ch10-Debugging/x64/Debug/CST116-Ch10-Debugging.ilk b/CST116-Ch10-Debugging/x64/Debug/CST116-Ch10-Debugging.ilk
new file mode 100644
index 0000000..4749a13
--- /dev/null
+++ b/CST116-Ch10-Debugging/x64/Debug/CST116-Ch10-Debugging.ilk
Binary files differ
diff --git a/CST116-Ch10-Debugging/x64/Debug/CST116-Ch10-Debugging.log b/CST116-Ch10-Debugging/x64/Debug/CST116-Ch10-Debugging.log
new file mode 100644
index 0000000..74d89bf
--- /dev/null
+++ b/CST116-Ch10-Debugging/x64/Debug/CST116-Ch10-Debugging.log
@@ -0,0 +1,2 @@
+ CST116-Ch10-Debugging.cpp
+ CST116-Ch10-Debugging.vcxproj -> C:\Users\cowpi\Source\Repos\cst116-ch10-debugging-Smith-Benjamin\CST116-Ch10-Debugging\x64\Debug\CST116-Ch10-Debugging.exe
diff --git a/CST116-Ch10-Debugging/x64/Debug/CST116-Ch10-Debugging.obj b/CST116-Ch10-Debugging/x64/Debug/CST116-Ch10-Debugging.obj
new file mode 100644
index 0000000..a2074bc
--- /dev/null
+++ b/CST116-Ch10-Debugging/x64/Debug/CST116-Ch10-Debugging.obj
Binary files differ
diff --git a/CST116-Ch10-Debugging/x64/Debug/CST116-Ch10-Debugging.pdb b/CST116-Ch10-Debugging/x64/Debug/CST116-Ch10-Debugging.pdb
new file mode 100644
index 0000000..123c0ac
--- /dev/null
+++ b/CST116-Ch10-Debugging/x64/Debug/CST116-Ch10-Debugging.pdb
Binary files differ
diff --git a/CST116-Ch10-Debugging/x64/Debug/CST116-Ch10-Debugging.vcxproj.FileListAbsolute.txt b/CST116-Ch10-Debugging/x64/Debug/CST116-Ch10-Debugging.vcxproj.FileListAbsolute.txt
new file mode 100644
index 0000000..b607046
--- /dev/null
+++ b/CST116-Ch10-Debugging/x64/Debug/CST116-Ch10-Debugging.vcxproj.FileListAbsolute.txt
@@ -0,0 +1 @@
+C:\Users\cowpi\source\repos\cst116-ch10-debugging-Smith-Benjamin\CST116-Ch10-Debugging\x64\Debug\CST116-Ch10-Debugging.exe
diff --git a/CST116-Ch10-Debugging/x64/Debug/vc143.idb b/CST116-Ch10-Debugging/x64/Debug/vc143.idb
new file mode 100644
index 0000000..afd94f2
--- /dev/null
+++ b/CST116-Ch10-Debugging/x64/Debug/vc143.idb
Binary files differ
diff --git a/CST116-Ch10-Debugging/x64/Debug/vc143.pdb b/CST116-Ch10-Debugging/x64/Debug/vc143.pdb
new file mode 100644
index 0000000..f9c2d59
--- /dev/null
+++ b/CST116-Ch10-Debugging/x64/Debug/vc143.pdb
Binary files differ