21 lines
809 B
Diff
21 lines
809 B
Diff
|
--- a/third_party/perfetto/src/trace_processor/perfetto_sql/engine/created_function.cc
|
||
|
+++ b/third_party/perfetto/src/trace_processor/perfetto_sql/engine/created_function.cc
|
||
|
@@ -107,7 +107,7 @@
|
||
|
// the destructors run correctly for non-trivial members of the
|
||
|
// union.
|
||
|
using Data =
|
||
|
- std::variant<int64_t, double, OwnedString, OwnedBytes, nullptr_t>;
|
||
|
+ std::variant<int64_t, double, OwnedString, OwnedBytes, std::nullptr_t>;
|
||
|
|
||
|
StoredSqlValue(SqlValue value) {
|
||
|
switch (value.type) {
|
||
|
@@ -132,7 +132,7 @@
|
||
|
}
|
||
|
|
||
|
SqlValue AsSqlValue() {
|
||
|
- if (std::holds_alternative<nullptr_t>(data)) {
|
||
|
+ if (std::holds_alternative<std::nullptr_t>(data)) {
|
||
|
return SqlValue();
|
||
|
} else if (std::holds_alternative<int64_t>(data)) {
|
||
|
return SqlValue::Long(std::get<int64_t>(data));
|