Definition at line 287 of file yaml_decoders.cc.
|
| static bool | decode (const Node &node, std::filesystem::path &rhs) |
| |
◆ decode()
| static bool YAML::convert< std::filesystem::path >::decode |
( |
const Node & |
node, |
|
|
std::filesystem::path & |
rhs |
|
) |
| |
|
inlinestatic |
Definition at line 288 of file yaml_decoders.cc.
289 {
290 if (!node.IsScalar())
291 return false;
292
293 rhs = std::filesystem::path{node.as<std::string>()};
294
295 return true;
296 }
The documentation for this struct was generated from the following file: