yaml-cpp/src/directives.cpp
Rosen Penev be7492203e [clang-tidy] remove pointless const
Found with readability-const-return-type

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2021-04-22 18:59:43 -07:00

17 lines
363 B
C++

#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