mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-14 02:06:16 +02:00
11 lines
119 B
C++
11 lines
119 B
C++
|
#include "eval.hh"
|
||
|
|
||
|
namespace nix {
|
||
|
|
||
|
SourcePath EvalState::rootPath(CanonPath path)
|
||
|
{
|
||
|
return std::move(path);
|
||
|
}
|
||
|
|
||
|
}
|