Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ext/yaml-cpp
Submodule yaml-cpp updated 70 files
+1 −0 .gitignore
+47 −48 CMakeLists.txt
+1 −1 README.md
+7 −3 include/yaml-cpp/binary.h
+2 −1 include/yaml-cpp/contrib/anchordict.h
+4 −3 include/yaml-cpp/emitter.h
+6 −1 include/yaml-cpp/eventhandler.h
+37 −5 include/yaml-cpp/exceptions.h
+6 −5 include/yaml-cpp/node/convert.h
+50 −17 include/yaml-cpp/node/detail/impl.h
+10 −6 include/yaml-cpp/node/detail/iterator.h
+3 −2 include/yaml-cpp/node/detail/memory.h
+6 −6 include/yaml-cpp/node/detail/node.h
+1 −1 include/yaml-cpp/node/detail/node_data.h
+65 −50 include/yaml-cpp/node/impl.h
+4 −0 include/yaml-cpp/node/node.h
+0 −25 include/yaml-cpp/noncopyable.h
+6 −2 include/yaml-cpp/ostream_wrapper.h
+7 −3 include/yaml-cpp/parser.h
+32 −0 include/yaml-cpp/traits.h
+9 −2 src/binary.cpp
+4 −2 src/collectionstack.h
+1 −1 src/contrib/graphbuilder.cpp
+3 −3 src/contrib/graphbuilderadapter.cpp
+12 −4 src/contrib/graphbuilderadapter.h
+32 −0 src/contrib/yaml-cpp.natvis
+9 −0 src/contrib/yaml-cpp.natvis.md
+2 −7 src/directives.cpp
+4 −3 src/emitfromevents.cpp
+4 −6 src/emitter.cpp
+24 −20 src/emitterstate.cpp
+7 −2 src/emitterstate.h
+14 −14 src/emitterutils.cpp
+1 −1 src/exceptions.cpp
+33 −33 src/exp.h
+24 −8 src/node_data.cpp
+8 −3 src/nodebuilder.cpp
+5 −1 src/nodebuilder.h
+2 −2 src/nodeevents.cpp
+6 −2 src/nodeevents.h
+8 −3 src/ostream_wrapper.cpp
+3 −3 src/parser.cpp
+7 −5 src/ptr_vector.h
+9 −11 src/regex_yaml.cpp
+7 −6 src/regex_yaml.h
+9 −4 src/scanner.cpp
+1 −1 src/scanner.h
+1 −1 src/scanscalar.cpp
+2 −2 src/scantoken.cpp
+16 −8 src/setting.h
+1 −1 src/simplekey.cpp
+17 −9 src/singledocparser.cpp
+9 −5 src/singledocparser.h
+13 −19 src/stream.cpp
+6 −3 src/stream.h
+4 −4 src/streamcharsource.h
+3 −2 src/tag.cpp
+7 −6 src/token.h
+44 −24 test/CMakeLists.txt
+16 −4 test/create-emitter-tests.py
+6 −6 test/integration/emitter_test.cpp
+61 −0 test/integration/error_messages_test.cpp
+677 −500 test/integration/gen_emitter_test.cpp
+12 −2 test/integration/handler_spec_test.cpp
+26 −0 test/integration/load_node_test.cpp
+2 −1 test/mock_event_handler.h
+89 −41 test/node/node_test.cpp
+9 −9 test/regex_test.cpp
+3 −3 util/CMakeLists.txt
+4 −2 yaml-cpp.pc.cmake
2 changes: 1 addition & 1 deletion include/cantera/base/AnyMap.h
Original file line number Diff line number Diff line change
Expand Up @@ -289,7 +289,7 @@ std::vector<vector_fp>& AnyValue::asVector<vector_fp>(size_t nMin, size_t nMax);
class AnyMap
{
public:
AnyMap() {};
AnyMap(): m_units() {};

//! Create an AnyMap from a YAML file.
/*!
Expand Down