Run wpiformat (#1379)

This commit is contained in:
Matt
2024-08-02 11:57:34 -04:00
committed by GitHub
parent d1e7fd4db9
commit 974a926e75
11 changed files with 20 additions and 0 deletions

View File

@@ -17,6 +17,8 @@
#include "photon/dataflow/structures/Packet.h"
#include <vector>
using namespace photon;
Packet::Packet(std::vector<uint8_t> data) : packetData(data) {}

View File

@@ -17,6 +17,8 @@
#include "photon/targeting/PhotonPipelineResult.h"
#include <vector>
namespace photon {
PhotonPipelineResult::PhotonPipelineResult(
int64_t sequenceID, units::microsecond_t captureTimestamp,

View File

@@ -17,8 +17,10 @@
#include "photon/targeting/PhotonTrackedTarget.h"
#include <algorithm>
#include <iostream>
#include <utility>
#include <vector>
#include <frc/geometry/Translation2d.h>
#include <wpi/SmallVector.h>

View File

@@ -17,6 +17,8 @@
#include "photon/targeting/proto/PhotonPipelineResultProto.h"
#include <vector>
#include "photon.pb.h"
#include "photon/targeting/proto/MultiTargetPNPResultProto.h"
#include "photon/targeting/proto/PhotonTrackedTargetProto.h"

View File

@@ -17,6 +17,9 @@
#include "photon/targeting/proto/PhotonTrackedTargetProto.h"
#include <utility>
#include <vector>
#include "photon.pb.h"
google::protobuf::Message* wpi::Protobuf<photon::PhotonTrackedTarget>::New(