-
-
Notifications
You must be signed in to change notification settings - Fork 152
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fixed date parsing when the year has a leading zero (closes #130)
also: - fixed omitting value part from hex/bin/oct being accepted without error (closes #129) - added spec bug github template
- Loading branch information
Showing
11 changed files
with
125 additions
and
25 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
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,55 @@ | ||
--- | ||
name: TOML spec conformance bug | ||
about: Bugs relating to the library's TOML spec conformance (or lack thereof). | ||
title: '' | ||
labels: [ "bug", "TOML spec" ] | ||
assignees: marzer | ||
|
||
--- | ||
|
||
<!-- | ||
Replace the HTML/TOML comments below with the requested information. | ||
Please don't delete this template and roll your own! | ||
Thanks for contributing! | ||
--> | ||
|
||
|
||
## The non-conforming TOML snippet | ||
```toml | ||
|
||
# your TOML here | ||
|
||
``` | ||
|
||
|
||
## What you expected | ||
<!-- | ||
e.g. a link to, or snippet from, the TOML spec, or some reasonable description thereof | ||
--> | ||
|
||
|
||
## What you got | ||
<!-- | ||
e.g toml-test output | ||
--> | ||
|
||
|
||
## Environment | ||
**toml++ version and/or commit hash:** | ||
<!-- | ||
If you're using the single-header version of the library, the version number is right at the top of the file. | ||
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. | ||
--> | ||
|
||
**Any other useful information:** | ||
<!-- | ||
Anything else you think will help me fix the issue. Since this report is for general spec conformance handling | ||
you probably don't need to worry about compiler versions, compilation flags, et cetera, though include them if | ||
you feel they're relevant. | ||
--> |
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
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
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
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
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
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
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
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
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