aboutsummaryrefslogtreecommitdiff
path: root/xsd-frontend/semantic-graph/annotation.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'xsd-frontend/semantic-graph/annotation.hxx')
-rw-r--r--xsd-frontend/semantic-graph/annotation.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/xsd-frontend/semantic-graph/annotation.hxx b/xsd-frontend/semantic-graph/annotation.hxx
index 3d6f098..6752a86 100644
--- a/xsd-frontend/semantic-graph/annotation.hxx
+++ b/xsd-frontend/semantic-graph/annotation.hxx
@@ -49,7 +49,7 @@ namespace XSDFrontend
class Annotation: public virtual Node
{
public:
- WideString const&
+ String const&
documentation () const
{
return documentation_;
@@ -59,7 +59,7 @@ namespace XSDFrontend
Annotation (Path const& file,
unsigned long line,
unsigned long column,
- WideString const& documentation)
+ String const& documentation)
: Node (file, line, column), documentation_ (documentation)
{
}
@@ -68,7 +68,7 @@ namespace XSDFrontend
add_edge_left (Annotates&) {}
private:
- WideString documentation_;
+ String documentation_;
};
}
}