Skip to content

Commit

Permalink
Update vectorFunctions.hpp
Browse files Browse the repository at this point in the history
  • Loading branch information
u2024 authored Jun 25, 2024
1 parent 7780fbe commit f25f2d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion homework/vector-of-shared-ptrs/vectorFunctions.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@
std::vector<std::shared_ptr<int>> generate(int count);
void print(std::vector<std::shared_ptr<int>> &vec);
void add10(std::vector<std::shared_ptr<int>> &vec);
void sub10(const int* ptr);
void sub10(int* const ptr);
void sub10(std::vector<std::shared_ptr<int>> &vec);

0 comments on commit f25f2d2

Please sign in to comment.