forked from lix-project/lix
13 lines
244 B
C++
13 lines
244 B
C++
|
#include "logging.hh"
|
||
|
#include "rust.hh"
|
||
|
|
||
|
namespace nix {
|
||
|
|
||
|
extern "C" std::exception_ptr * make_error(rust::StringSlice s)
|
||
|
{
|
||
|
// FIXME: leak
|
||
|
return new std::exception_ptr(std::make_exception_ptr(Error(std::string(s.ptr, s.size))));
|
||
|
}
|
||
|
|
||
|
}
|