-
Notifications
You must be signed in to change notification settings - Fork 253
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
13 changed files
with
2,009 additions
and
2,041 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
--- | ||
name: Bug report | ||
about: Found a bug? Report it here. | ||
title: "[BUG]" | ||
labels: bug | ||
assignees: bshoshany | ||
|
||
--- | ||
|
||
**Describe the bug** | ||
|
||
A clear and concise description of what the bug is. | ||
|
||
**Minimal working example** | ||
|
||
A short but complete program that can be compiled to reproduce the error. Paste the program between the two code fences. If it's too long or requires multiple files, attach the file(s) instead. | ||
|
||
```cpp | ||
``` | ||
|
||
**Behavior** | ||
|
||
What behavior did you expect to get? What actually happened? If the code failed to compile, please include the full output of the compiler. | ||
|
||
**System information** | ||
|
||
* CPU model, architecture, # of cores and threads: | ||
* Operating system: | ||
* Name and version of C++ compiler: | ||
* Full command used for compiling, including all compiler flags: | ||
* Thread pool library version: | ||
|
||
(Please note that only the latest version of the thread pool library is supported.) | ||
|
||
**Additional information** | ||
|
||
Include any additional information here. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
--- | ||
name: Failed tests | ||
about: The provided automated tests failed on your system? Report it here. | ||
title: "[TEST]" | ||
labels: bug | ||
assignees: bshoshany | ||
|
||
--- | ||
|
||
**System information** | ||
|
||
* CPU model, architecture, # of cores and threads: | ||
* Operating system: | ||
* Name and version of C++ compiler: | ||
* Full command used for compiling, including all compiler flags: | ||
* Thread pool library version: | ||
|
||
(Please note that only the latest version of the thread pool library is supported.) | ||
|
||
**Log file** | ||
|
||
Please attach the log file generated by the automated test program to this issue. | ||
|
||
**Additional information** | ||
|
||
Include any additional information here. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
--- | ||
name: Feature request | ||
about: Want a new feature? Suggest it here. | ||
title: "[REQ]" | ||
labels: enhancement | ||
assignees: bshoshany | ||
|
||
--- | ||
|
||
**Describe the new feature** | ||
|
||
A clear and concise description of the feature you want. | ||
|
||
**Code example** | ||
|
||
An example of code that utilizes the suggested feature. Paste or write it between the two code fences. | ||
|
||
```cpp | ||
``` | ||
|
||
**Additional information** | ||
|
||
Include any additional information here. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
**Pull request policy (please read)** | ||
|
||
> Contributions are always welcome. However, I release my projects in cumulative updates after editing and testing them locally on my system, so my policy is not to accept any pull requests. If you open a pull request, and I decide to incorporate your suggestion into the project, I will first modify your code to comply with the project's coding conventions (formatting, syntax, naming, comments, programming practices, etc.), and perform some tests to ensure that the change doesn't break anything. I will then merge it into the next release of the project, possibly together with some other changes. The new release will also include a note in `CHANGELOG.md` with a link to your pull request, and modifications to the documentation in `README.md` as needed. | ||
**Describe the changes** | ||
|
||
What does your pull request fix or add to the library? | ||
|
||
**Testing** | ||
|
||
Have you tested the new code using the provided automated test program and/or performed any other tests to ensure that it works correctly? If so, please provide information about the test system(s): | ||
|
||
* CPU model, architecture, # of cores and threads: | ||
* Operating system: | ||
* Name and version of C++ compiler: | ||
* Full command used for compiling, including all compiler flags: | ||
|
||
**Additional information** | ||
|
||
Include any additional information here. |
Oops, something went wrong.