游雁
2023-04-23 40b09bb0706d09dba038e90ebaa178710a816189
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include "directives.h"
 
namespace YAML {
Directives::Directives() : version{true, 1, 2}, tags{} {}
 
std::string Directives::TranslateTagHandle(
    const std::string& handle) const {
  auto it = tags.find(handle);
  if (it == tags.end()) {
    if (handle == "!!")
      return "tag:yaml.org,2002:";
    return handle;
  }
 
  return it->second;
}
}  // namespace YAML