Merge pull request #14 from enlight/nullptr-converter

Add a converter for `nullptr_t`
This commit is contained in:
Cheng Zhao 2017-08-17 16:01:27 +09:00 коммит произвёл GitHub
Родитель 159a25d8e7 747495e77c
Коммит f047bb61bb
1 изменённых файлов: 7 добавлений и 0 удалений

Просмотреть файл

@ -40,6 +40,13 @@ struct Converter<void*> {
}
};
template<>
struct Converter<std::nullptr_t> {
static v8::Local<v8::Value> ToV8(v8::Isolate* isolate, std::nullptr_t val) {
return v8::Null(isolate);
}
};
template<>
struct Converter<bool> {
static v8::Local<v8::Value> ToV8(v8::Isolate* isolate,