forked from pz4kybsvg/Conception
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
424 B
14 lines
424 B
#include "drake/common/yaml/yaml_io_options.h"
|
|
|
|
namespace drake {
|
|
namespace yaml {
|
|
|
|
std::ostream& operator<<(std::ostream& os, const LoadYamlOptions& x) {
|
|
return os << "{.allow_yaml_with_no_cpp = " << x.allow_yaml_with_no_cpp
|
|
<< ", .allow_cpp_with_no_yaml = " << x.allow_cpp_with_no_yaml
|
|
<< ", .retain_map_defaults = " << x.retain_map_defaults << "}";
|
|
}
|
|
|
|
} // namespace yaml
|
|
} // namespace drake
|