Skip to content

Commit 271277d

Browse files
committed
2 parents a791f0a + 96c02e3 commit 271277d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
Welcome to the Parallel Programming Course!
1010

11-
For more detailed documentation and resources, please visit documentation pages: [en](https://learning-process.github.io/parallel_programming_course/en/), [ru](https://learning-process.github.io/parallel_programming_course/ru/).
11+
For more detailed documentation and resources, please visit documentation pages: [en](https://learning-process.github.io/parallel_programming_course/en/), [ru](https://learning-process.github.io/parallel_programming_course/ru/). Course slides are available [here](https://learning-process.github.io/parallel_programming_slides/).
1212

1313
Course scoreboard is available [here](https://learning-process.github.io/parallel_programming_course/scoreboard/).
1414

modules/task/include/task.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -283,7 +283,7 @@ using TaskPtr = std::shared_ptr<Task<InType, OutType>>;
283283
/// @param in Input to pass to the task constructor.
284284
/// @return Shared a pointer to the newly created task.
285285
template <typename TaskType, typename InType>
286-
std::shared_ptr<TaskType> TaskGetter(InType in) {
286+
std::shared_ptr<TaskType> TaskGetter(const InType &in) {
287287
return std::make_shared<TaskType>(in);
288288
}
289289

0 commit comments

Comments
 (0)