Don't return v8::Maybe for std::vector

This commit is contained in:
Cheng Zhao 2015-11-02 20:44:37 +08:00
parent b7387da085
commit 21cda4e7fc

View file

@ -255,11 +255,6 @@ struct Converter<std::set<T> > {
}
};
template<typename T>
struct ToV8ReturnsMaybe<std::vector<T>> {
static const bool value = true;
};
// Convenience functions that deduce T.
template<typename T>
v8::Local<v8::Value> ConvertToV8(v8::Isolate* isolate, const T& input) {