update bug report template
This commit is contained in:
parent
ad55bae8a1
commit
45e37d7b15
20
.github/ISSUE_TEMPLATE/bug_report.md
vendored
20
.github/ISSUE_TEMPLATE/bug_report.md
vendored
@ -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!
|
||||
-->
|
||||
@ -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.
|
||||
-->
|
||||
|
||||
|
||||
@ -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*
|
||||
-->
|
||||
|
||||
|
||||
@ -83,4 +93,6 @@ assignees: marzer
|
||||
## Additional information
|
||||
<!--
|
||||
Any post-scripts, addendums, or additional pieces of context, as necessary.
|
||||
|
||||
*DON'T PASTE SCREENSHOTS*
|
||||
-->
|
||||
|
14
toml++.props
14
toml++.props
@ -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>
|
||||
|
Loading…
Reference in New Issue
Block a user