diff options
| author | Connor McDowell <[email protected]> | 2024-02-24 15:03:59 -0800 |
|---|---|---|
| committer | Connor McDowell <[email protected]> | 2024-02-24 15:03:59 -0800 |
| commit | aba41bb9090e06e4f4df1e64307400026c3831a3 (patch) | |
| tree | 6f077e697c61ebda0e01dabfdd5cbc3081c628c7 /Project1/helper.h | |
| parent | screenshots taken to be added to lab, fibonacci array created (diff) | |
| download | lab-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.h | 6 |
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 |