summaryrefslogtreecommitdiff
path: root/cli/semantics/unit.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'cli/semantics/unit.hxx')
-rw-r--r--cli/semantics/unit.hxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/cli/semantics/unit.hxx b/cli/semantics/unit.hxx
index c15d172..a67e1ff 100644
--- a/cli/semantics/unit.hxx
+++ b/cli/semantics/unit.hxx
@@ -30,7 +30,7 @@ namespace semantics
return *includer_;
}
- path
+ string const&
file () const
{
return file_;
@@ -39,7 +39,7 @@ namespace semantics
protected:
friend class graph<node, edge>;
- includes (path const& file)
+ includes (string const& file)
: file_ (file)
{
}
@@ -51,7 +51,7 @@ namespace semantics
}
protected:
- path file_;
+ string file_;
cli_unit* includer_;
};
@@ -69,7 +69,7 @@ namespace semantics
protected:
friend class graph<node, edge>;
- cli_includes (path const& file)
+ cli_includes (string const& file)
: includes (file)
{
}
@@ -98,7 +98,7 @@ namespace semantics
protected:
friend class graph<node, edge>;
- cxx_includes (path const& file)
+ cxx_includes (string const& file)
: includes (file)
{
}