aboutsummaryrefslogtreecommitdiff
path: root/Project1/helper.h
diff options
context:
space:
mode:
authorConnor McDowell <[email protected]>2024-02-24 15:03:59 -0800
committerConnor McDowell <[email protected]>2024-02-24 15:03:59 -0800
commitaba41bb9090e06e4f4df1e64307400026c3831a3 (patch)
tree6f077e697c61ebda0e01dabfdd5cbc3081c628c7 /Project1/helper.h
parentscreenshots taken to be added to lab, fibonacci array created (diff)
downloadlab-01-connormcdowell275-aba41bb9090e06e4f4df1e64307400026c3831a3.tar.xz
lab-01-connormcdowell275-aba41bb9090e06e4f4df1e64307400026c3831a3.zip
adding fibonacci functions. added cArray, stdArray and myVector
Diffstat (limited to 'Project1/helper.h')
-rw-r--r--Project1/helper.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/Project1/helper.h b/Project1/helper.h
index cf90d68..8813e4d 100644
--- a/Project1/helper.h
+++ b/Project1/helper.h
@@ -21,10 +21,10 @@ void Print(const std::list<int>& myList);
void Fibonacci(int(&cArray)[SIZE]);
-void Fibonacci(const std::array<int, SIZE>& stdArray);
+void Fibonacci(std::array<int, SIZE>& stdArray);
-void Fibonacci(const std::vector<int>& myVector);
+void Fibonacci(std::vector<int>& myVector);
-void Fibonacci(const std::list<int>& myList);
+void Fibonacci(std::list<int>& myList);
#endif HELPER