Bug 1869835: apply code formatting via Lando

# ignore-this-changeset
This commit is contained in:
Otto Länd 2023-12-21 18:20:47 +00:00
Родитель a87f427a93
Коммит 023b157add
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -52,10 +52,10 @@ Note: Most marker-related identifiers are in the ``mozilla`` namespace, to be ad
static constexpr const char* ChartLabel = "Number: {marker.data.number}";
// Data specific to this marker type, as passed to PROFILER_MARKER/profiler_add_marker.
static void StreamJSONMarkerData(SpliceableJSONWriter& aWriter, uint32_t aNumber) {
static void StreamJSONMarkerData(SpliceableJSONWriter& aWriter, uint32_t a number) {
// Custom writer for marker fields, or using the default parent
// implementation if the function arguments match the schema.
StreamJSONMarkerDataImpl(aWriter, aNumber);
StreamJSONMarkerDataImpl(aWriter, a number);
}
};