We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6392ec6 commit 8724deaCopy full SHA for 8724dea
2 files changed
src/tag.cpp
@@ -29,7 +29,7 @@ Tag::Tag(const Token& token)
29
}
30
31
32
-std::string Tag::Translate(const Directives& directives) {
+std::string Tag::Translate(const Directives& directives) const {
33
switch (type) {
34
case VERBATIM:
35
return value;
src/tag.h
@@ -23,7 +23,7 @@ struct Tag {
23
};
24
25
Tag(const Token& token);
26
- std::string Translate(const Directives& directives);
+ std::string Translate(const Directives& directives) const;
27
28
TYPE type;
std::string handle, value;
0 commit comments