mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-14 10:16:15 +02:00
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))));
|
||
|
}
|
||
|
|
||
|
}
|