Definition at line 288 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 289 of file yaml_decoders.cc.
290 {
291 if (!node.IsScalar())
292 return false;
293
294 rhs = std::filesystem::path{node.as<std::string>()};
295
296 return true;
297 }
The documentation for this struct was generated from the following file: