mirror of
https://github.com/marzer/tomlplusplus.git
synced 2025-02-25 06:39:58 +00:00
- added `toml::is_number<>` - added `toml::node_type::none` - added initializer_list and vector relops to `toml::array` - added constructors for `time_offset` and `date_time` - added much to `node_view` - added tests for `node_view` value relops - added lots more documentation - removed `time_offset::from_hh_mm` - removed the handling of `\s` literals (looks like it's not going be accepted as-is)
10 lines
174 B
C
10 lines
174 B
C
#pragma once
|
|
|
|
#define TOML_LIB_MAJOR 0
|
|
#define TOML_LIB_MINOR 1
|
|
#define TOML_LIB_PATCH 0
|
|
|
|
#define TOML_LANG_MAJOR 0
|
|
#define TOML_LANG_MINOR 5
|
|
#define TOML_LANG_PATCH 0
|