Browse Source

chore: remove unsupported OS_FREEBSD flag check (#36273)

Co-authored-by: Milan Burda <[email protected]>
Co-authored-by: Shelley Vohr <[email protected]>
Milan Burda 2 years ago
parent
commit
31a0bb7de2
1 changed files with 1 additions and 1 deletions
  1. 1 1
      shell/common/gin_converters/std_converter.h

+ 1 - 1
shell/common/gin_converters/std_converter.h

@@ -24,7 +24,7 @@ v8::Local<v8::Value> ConvertToV8(v8::Isolate* isolate, T&& input) {
       isolate, std::forward<T>(input));
 }
 
-#if !BUILDFLAG(IS_LINUX) && !defined(OS_FREEBSD)
+#if !BUILDFLAG(IS_LINUX)
 template <>
 struct Converter<unsigned long> {  // NOLINT(runtime/int)
   static v8::Local<v8::Value> ToV8(v8::Isolate* isolate,