Skip to content

Commit

Permalink
Some more related tweaks
Browse files Browse the repository at this point in the history
* Update "classHandler/hostTask.h", which has the same problem.
* Fix the indentation to match the other synopses.
  • Loading branch information
gmlueck committed Jan 4, 2024
1 parent cfdc833 commit 958d6ad
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 10 deletions.
11 changes: 5 additions & 6 deletions adoc/headers/hostTask/classHandler/hostTask.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,11 @@
// SPDX-License-Identifier: MIT

class handler {
...
public:
// ...

public
: template <typename T>
void
host_task(T&& hostTaskCallable); // (1)
template <typename T>
void host_task(T&& hostTaskCallable); // (1)

...
// ...
};
7 changes: 3 additions & 4 deletions adoc/headers/hostTask/hostTaskSynopsis.h
Original file line number Diff line number Diff line change
Expand Up @@ -39,12 +39,11 @@ class interop_handle {
};

class handler {
public:
// ...

public:

template <typename T>
void host_task(T&& hostTaskCallable);
template <typename T>
void host_task(T&& hostTaskCallable);

// ...
};
Expand Down

0 comments on commit 958d6ad

Please sign in to comment.