- 10 Oct, 2021 2 commits
-
-
João Marcos Bezerra authored
-
Pino Toscano authored
-
- 28 Sep, 2021 1 commit
-
-
Jesse Beder authored
This reverts commit da1c8d36. and fixes #1036.
-
- 25 Sep, 2021 1 commit
-
-
Pino Toscano authored
* Export YAML::detail::node::m_amount The internal header node/detail/node.h is included by public headers; YAML::detail::node is implemented in the header itself, and thus it gets inlined... except for its static m_amount class member, which is instantiated in the library only. Right now all the symbols of yaml-cpp are exported (nothing is hidden), so the linker will find node::m_amount in the yaml-cpp library. As solution/workaround, explicitly export YAML::detail::node::m_amount. * CMake: use GenerateExportHeader Make use of the GenerateExportHeader CMake module to generate the dll.h header with export macros. While the produced dll.h is different, the result should be the same, i.e. nothing changes for yaml-cpp or its users. * CMake: hide all the symbols by default Hide all the symbols that are not explicitly exported with YAML_CPP_API. This way the ABI will be way smaller, and only actually exposing the public classes/functions.
-
- 30 Aug, 2021 1 commit
-
-
jwindgassen authored
-
- 23 Jul, 2021 1 commit
-
-
Snow Pettersen authored
-
- 15 Jul, 2021 2 commits
-
-
mjvankampen authored
-
jbeach authored
-
- 10 Jul, 2021 2 commits
-
-
JBPennington authored
Removed the variable name in the defaulted function to make GCC happy.
-
Jesse Beder authored
-
- 05 Jul, 2021 1 commit
-
-
theamarin authored
-
- 05 Jan, 2021 1 commit
-
-
t.t authored
convert.h line130 : warning C4244 conversation from int to T possible loss of data
-
- 27 Jul, 2020 1 commit
-
-
Chen authored
-
- 24 Jul, 2020 2 commits
- 23 Jul, 2020 2 commits
-
-
Chen authored
-
Kajetan Świerk authored
- Don't eagerly convert key to std::string - Make const char* keys streamable when exception is thrown - Don't create a temporary string when comparing a const char* key
-
- 19 Jul, 2020 1 commit
-
-
Kajetan Świerk authored
-
- 16 Jul, 2020 3 commits
- 14 Jul, 2020 2 commits
-
-
Pavel Karelin authored
Not use 'emit' as variable name, in Qt Framework it reserved word
-
Oliver Hamlet authored
For completeness I've implemented escaping for characters outside the basic multilingual plane, but it doesn't get used (as there's no EscapeAsAsciiJson emitter option implemented).
-
- 08 Jul, 2020 1 commit
-
-
Tom Collins authored
Per https://cmake.org/cmake/help/latest/policy/CMP0091.html, we need to enable policy CMP0091 if we want to make use of MSVC_RUNTIME_LIBRARY and/or CMAKE_MSVC_RUNTIME_LIBRARY. Fixes issue #912.
-
- 06 Jul, 2020 1 commit
-
-
Chen authored
-
- 02 Jul, 2020 2 commits
-
-
Chen authored
Fixes #740.
-
Raffaello Bertini authored
Inside of a sequence or map, `YAML::Newline` wouldn't reset the collection state, which would cause behavior like this: ``` nodeA: k: [{i: 0}, {i:1}, ]NodeB: k: [{i: 0}, {i:1}, ] ```
-
- 29 Jun, 2020 2 commits
- 28 Jun, 2020 1 commit
-
-
Dekken authored
-
- 21 Jun, 2020 1 commit
-
-
Dekken authored
-
- 17 Jun, 2020 2 commits
- 16 Jun, 2020 1 commit
-
-
Rosen Penev authored
Found with modernize-use-auto Signed-off-by:Rosen Penev <rosenp@gmail.com>
-
- 15 Jun, 2020 6 commits
-
-
Rosen Penev authored
Found with performance-unnecessary-value-param Signed-off-by:Rosen Penev <rosenp@gmail.com>
-
Rosen Penev authored
Found with readability-container-size-empty Signed-off-by:Rosen Penev <rosenp@gmail.com>
-
Rosen Penev authored
* partially fix clang compilation Missing header and mistaken algorithm usage. Also removed it name from range loops. It's not correct. Signed-off-by:
Rosen Penev <rosenp@gmail.com> * run through clang's -Wrange-loop-analysis Some range loops should not use references as they need to copy. Signed-off-by:
Rosen Penev <rosenp@gmail.com> * manual range loop conversions Signed-off-by:
Rosen Penev <rosenp@gmail.com>
-
Rosen Penev authored
Found with modernize-return-braced-init-list Signed-off-by:Rosen Penev <rosenp@gmail.com>
-
Rosen Penev authored
Found with readability-inconsistent-declaration-parameter-name Signed-off-by:Rosen Penev <rosenp@gmail.com>
-
Rosen Penev authored
Found with modernize-use-bool-literals Signed-off-by:Rosen Penev <rosenp@gmail.com>
-