diff options
| author | Taylor Rogers <[email protected]> | 2022-10-08 12:57:18 -0700 |
|---|---|---|
| committer | Taylor Rogers <[email protected]> | 2022-10-08 12:57:18 -0700 |
| commit | 2bfa90207aa2ed638842d6d9825ddb4430816a8d (patch) | |
| tree | 22303563e4fcafdf3db9f931de02e60875a5aa4b | |
| parent | Setting up GitHub Classroom Feedback (diff) | |
| download | cst116-ch7-debugging-taylorrog-2bfa90207aa2ed638842d6d9825ddb4430816a8d.tar.xz cst116-ch7-debugging-taylorrog-2bfa90207aa2ed638842d6d9825ddb4430816a8d.zip | |
Added name
| -rw-r--r-- | .vs/ProjectSettings.json | 3 | ||||
| -rw-r--r-- | .vs/VSWorkspaceState.json | 8 | ||||
| -rw-r--r-- | .vs/cst116-ch7-debugging-Taylorrog/project-colors.json | 11 | ||||
| -rw-r--r-- | .vs/cst116-ch7-debugging-Taylorrog/v17/.suo | bin | 0 -> 24064 bytes | |||
| -rw-r--r-- | .vs/cst116-ch7-debugging-Taylorrog/v17/Browse.VC.db | bin | 0 -> 15200256 bytes | |||
| -rw-r--r-- | .vs/cst116-ch7-debugging-Taylorrog/v17/ipch/AutoPCH/30b3d35916b36da/CST116-CH7-DEBUGGING.ipch | bin | 0 -> 34209792 bytes | |||
| -rw-r--r-- | .vs/slnx.sqlite | bin | 0 -> 331776 bytes | |||
| -rw-r--r-- | CST116-Ch7-Debugging/CST116-Ch7-Debugging.cpp | 2 |
8 files changed, 24 insertions, 0 deletions
diff --git a/.vs/ProjectSettings.json b/.vs/ProjectSettings.json new file mode 100644 index 0000000..0cf5ea5 --- /dev/null +++ b/.vs/ProjectSettings.json @@ -0,0 +1,3 @@ +{ + "CurrentProjectSetting": "No Configurations" +}
\ No newline at end of file diff --git a/.vs/VSWorkspaceState.json b/.vs/VSWorkspaceState.json new file mode 100644 index 0000000..a5770c2 --- /dev/null +++ b/.vs/VSWorkspaceState.json @@ -0,0 +1,8 @@ +{ + "ExpandedNodes": [ + "", + "\\CST116-Ch7-Debugging" + ], + "SelectedNode": "\\CST116-Ch7-Debugging\\CST116-Ch7-Debugging.cpp", + "PreviewInSolutionExplorer": false +}
\ No newline at end of file diff --git a/.vs/cst116-ch7-debugging-Taylorrog/project-colors.json b/.vs/cst116-ch7-debugging-Taylorrog/project-colors.json new file mode 100644 index 0000000..069efb9 --- /dev/null +++ b/.vs/cst116-ch7-debugging-Taylorrog/project-colors.json @@ -0,0 +1,11 @@ +{ + "Version": 1, + "ProjectMap": { + "a2fe74e1-b743-11d0-ae1a-00a0c90fffc3": { + "ProjectGuid": "a2fe74e1-b743-11d0-ae1a-00a0c90fffc3", + "DisplayName": "Miscellaneous Files", + "ColorIndex": -1 + } + }, + "NextColorIndex": 0 +}
\ No newline at end of file diff --git a/.vs/cst116-ch7-debugging-Taylorrog/v17/.suo b/.vs/cst116-ch7-debugging-Taylorrog/v17/.suo Binary files differnew file mode 100644 index 0000000..fc127d1 --- /dev/null +++ b/.vs/cst116-ch7-debugging-Taylorrog/v17/.suo diff --git a/.vs/cst116-ch7-debugging-Taylorrog/v17/Browse.VC.db b/.vs/cst116-ch7-debugging-Taylorrog/v17/Browse.VC.db Binary files differnew file mode 100644 index 0000000..e3603a0 --- /dev/null +++ b/.vs/cst116-ch7-debugging-Taylorrog/v17/Browse.VC.db diff --git a/.vs/cst116-ch7-debugging-Taylorrog/v17/ipch/AutoPCH/30b3d35916b36da/CST116-CH7-DEBUGGING.ipch b/.vs/cst116-ch7-debugging-Taylorrog/v17/ipch/AutoPCH/30b3d35916b36da/CST116-CH7-DEBUGGING.ipch Binary files differnew file mode 100644 index 0000000..921ae0e --- /dev/null +++ b/.vs/cst116-ch7-debugging-Taylorrog/v17/ipch/AutoPCH/30b3d35916b36da/CST116-CH7-DEBUGGING.ipch diff --git a/.vs/slnx.sqlite b/.vs/slnx.sqlite Binary files differnew file mode 100644 index 0000000..7dfaeb4 --- /dev/null +++ b/.vs/slnx.sqlite diff --git a/CST116-Ch7-Debugging/CST116-Ch7-Debugging.cpp b/CST116-Ch7-Debugging/CST116-Ch7-Debugging.cpp index f64adfe..896b37d 100644 --- a/CST116-Ch7-Debugging/CST116-Ch7-Debugging.cpp +++ b/CST116-Ch7-Debugging/CST116-Ch7-Debugging.cpp @@ -1,6 +1,8 @@ /********************************************************************
* File: CST116-Ch7-Debugging.cpp
*
+* Name: Taylor Rogers
+*
* General Instructions: Complete each step before proceeding to the
* next.
*
|