mirror of
https://github.com/marzer/tomlplusplus.git
synced 2024-11-02 02:26:28 +00:00
de07ba7187
also added support for wide strings on Windows (closes #42): - added wide-string path arg overloads of `parse()` and `parse_file()` - added wide-string support to all relevant `table` and `array` ops - added `std::wstring` support to `node::value()` and `node::value_or()` - added `std::wstring` support to `node_view::value()` and `node_view::value_or()` - added wide-string overloads of `table::operator[]` - added wide-string overloads of `node_view::operator[]` - added `source_region::wide_path()` - added `TOML_WINDOWS_COMPAT` switch for explicitly enabling/disabling this stuff also: - fixed internal macro `assert_or_assume` leaking out of `toml_parser.hpp` - deprecated `node_view::get()` in favour of `node_view::node()` - minor documentation fixes - minor cleanup
26 lines
486 B
INI
26 lines
486 B
INI
root = true
|
|
|
|
[*]
|
|
insert_final_newline = true
|
|
indent_style = tab
|
|
indent_size = 4
|
|
tab_width = 4
|
|
end_of_line = lf
|
|
|
|
[*.{gitattributes, yml, props, vcxproj}]
|
|
indent_style = space
|
|
|
|
[{Doxyfile, Doxyfile-mcss}]
|
|
indent_style = space
|
|
|
|
[*.{natvis, props, vcxproj, sln, runsettings}]
|
|
end_of_line = crlf
|
|
|
|
[*.{c, cpp, cxx, dox, h, hpp, hxx, inl, toml, xml, py, natvis, props, build, vcxproj, runsettings, yml, ini, json}]
|
|
charset = utf-8
|
|
trim_trailing_whitespace = true
|
|
|
|
[*.sln]
|
|
charset = utf-8-bom
|
|
|