Skip to content

Commit

Permalink
update bug report template
Browse files Browse the repository at this point in the history
  • Loading branch information
marzer committed May 18, 2023
1 parent ad55bae commit 45e37d7
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 7 deletions.
20 changes: 16 additions & 4 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,14 @@ assignees: marzer

<!--
Replace the HTML comments below with the requested information.
Please don't delete this template and roll your own!
Please be as thorough as possible, and don't delete this template and roll your own.
I'm a human being with a busy life and concerns of my own - if you force me to jump through many
information-gathering hoops without first making an effort yourself, there's a high chance I'll
summarily close your issue as 'not a bug'.
Also please *don't* paste screenshots of logs, compiler messages, et cetera. Paste their actual text.
I can't copy/paste/search text from an image.
Thanks for contributing!
-->
Expand All @@ -23,9 +30,8 @@ assignees: marzer
Otherwise you can find it by opening toml++/impl/version.h; it'll be represented by three defines -
TOML_LIB_MAJOR, TOML_LIB_MINOR and TOML_LIB_PATCH.
If you're not using any particular release and are instead just living large at HEAD of master, the commit hash
would be super helpful too, though it's not critical.
If you're not using any particular release and have just cloned the repository directly,
please also include the the commit hash.
-->


Expand Down Expand Up @@ -68,6 +74,10 @@ assignees: marzer
## Describe the bug
<!--
A clear and concise description of the bug goes here.
Please include compiler error messages as appropriate.
*DON'T PASTE SCREENSHOTS*
-->


Expand All @@ -83,4 +93,6 @@ assignees: marzer
## Additional information
<!--
Any post-scripts, addendums, or additional pieces of context, as necessary.
*DON'T PASTE SCREENSHOTS*
-->
14 changes: 11 additions & 3 deletions toml++.props
Original file line number Diff line number Diff line change
Expand Up @@ -86,15 +86,23 @@
<DiagnosticsFormat>Caret</DiagnosticsFormat>
<ProgramDataBaseFileName>$(OutDir)$(TargetName).pdb</ProgramDataBaseFileName>
<EnableEnhancedInstructionSet>$(TomlInstructionSet_)</EnableEnhancedInstructionSet>
<AdditionalOptions>
%(AdditionalOptions) /utf-8 /volatile:iso /Zc:__cplusplus /bigobj /Zc:inline /Zc:throwingNew
</AdditionalOptions>
<!-- conformance flags -->
<AdditionalOptions>%(AdditionalOptions) /utf-8</AdditionalOptions>
<AdditionalOptions>%(AdditionalOptions) /bigobj</AdditionalOptions>
<AdditionalOptions>%(AdditionalOptions) /volatile:iso</AdditionalOptions>
<AdditionalOptions>%(AdditionalOptions) /Zc:__cplusplus</AdditionalOptions>
<AdditionalOptions>%(AdditionalOptions) /Zc:inline</AdditionalOptions>
<AdditionalOptions>%(AdditionalOptions) /Zc:throwingNew</AdditionalOptions>
<!-- defines -->
<PreprocessorDefinitions>%(PreprocessorDefinitions);_WINSOCK_DEPRECATED_NO_WARNINGS</PreprocessorDefinitions>
<PreprocessorDefinitions>%(PreprocessorDefinitions);_SCL_SECURE_NO_WARNINGS</PreprocessorDefinitions>
<PreprocessorDefinitions>%(PreprocessorDefinitions);_CRT_SECURE_NO_WARNINGS</PreprocessorDefinitions>
<PreprocessorDefinitions>%(PreprocessorDefinitions);_MSC_TOOLSET_VER=$(PlatformToolsetVersion)</PreprocessorDefinitions>
<PreprocessorDefinitions>%(PreprocessorDefinitions);_ITERATOR_DEBUG_LEVEL=0</PreprocessorDefinitions>
<PrecompiledHeaderFile>pch.h</PrecompiledHeaderFile>
<!-- modules -->
<EnableModules>false</EnableModules>
<BuildStlModules>false</BuildStlModules>
</ClCompile>
<Link>
<TreatLinkerWarningAsErrors>true</TreatLinkerWarningAsErrors>
Expand Down

0 comments on commit 45e37d7

Please sign in to comment.